HomeSort by relevance Sort by last modified time
    Searched refs:bitmap (Results 1 - 25 of 224) sorted by null

1 2 3 4 5 6 7 8 9

  /onnv/onnv-gate/usr/src/uts/common/sys/
bitmap.h 43 #include <asm/bitmap.h>
48 * A bitmap is a vector of 1 or more ulong_t's.
72 * bitmap is a ulong_t *, bitindex an index_t
81 #define BT_WIM(bitmap, bitindex) \
82 ((bitmap)[(bitindex) >> BT_ULSHIFT])
90 #define BT_WIM32(bitmap, bitindex) \
91 ((bitmap)[(bitindex) >> BT_ULSHIFT32])
106 #define BT_TEST(bitmap, bitindex) \
107 ((BT_WIM((bitmap), (bitindex)) & BT_BIW(bitindex)) ? 1 : 0)
108 #define BT_SET(bitmap, bitindex)
    [all...]
bitset.h 34 #include <sys/bitmap.h>
  /onnv/onnv-gate/usr/src/lib/libntfs/common/include/ntfs/
bitmap.h 2 * bitmap.h - Exports for bitmap handling. Part of the Linux-NTFS project.
34 * - bitmap starts at bit = 0 and ends at bit = bitmap size - 1.
36 * size of the bitmap.
41 * @bitmap: field of bits
45 * Set the bit @bit in the @bitmap to @new_value. Ignore all errors.
47 static __inline__ void ntfs_bit_set(u8 *bitmap, const u64 bit,
50 if (!bitmap || new_value > 1)
53 bitmap[bit >> 3] &= ~(1 << (bit & 7))
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cdrw/
options.c 55 msk->bitmap[loc >> 3] |= bitlocation[loc & 7];
70 if (msk->bitmap[i] == specified->bitmap[i])
72 bmap = msk->bitmap[i] | specified->bitmap[i];
73 bmap ^= msk->bitmap[i];
options.h 39 uchar_t bitmap[16]; member in struct:option_mask
  /onnv/onnv-gate/usr/src/uts/common/avs/ns/rdc/
rdc_update.h 37 uchar_t *bitmap; /* set of changes to be made */ member in struct:rdc_update_s
38 int size; /* size of bitmap in bytes */
  /onnv/onnv-gate/usr/src/uts/common/io/scsi/adapters/iscsi/
iscsi_thread.c 52 thread->sign.bitmap = 0;
85 if (!(thread->sign.bitmap & ISCSI_THREAD_SIGNAL_KILL)) {
86 thread->sign.bitmap |= ISCSI_THREAD_SIGNAL_KILL;
136 if (!(thread->sign.bitmap & ISCSI_THREAD_SIGNAL_KILL)) {
137 thread->sign.bitmap |= ISCSI_THREAD_SIGNAL_KILL;
147 thread->sign.bitmap = 0;
191 if (!(thread->sign.bitmap & ISCSI_THREAD_SIGNAL_KILL)) {
192 thread->sign.bitmap |= ISCSI_THREAD_SIGNAL_KILL;
231 if (!(thread->sign.bitmap & ISCSI_THREAD_SIGNAL_KILL)) {
232 thread->sign.bitmap |= ISCSI_THREAD_SIGNAL_KILL
288 uint32_t bitmap; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/os/
bitmap.c 35 * A bitmap is a vector of 1 or more ulongs.
41 #include <sys/bitmap.h>
45 * Return index of first available bit in denoted bitmap, or -1 for
46 * failure. Size is the cardinality of the bitmap; that is, the
48 * No side-effects. In particular, does not update bitmap.
52 bt_availbit(ulong_t *bitmap, size_t nbits)
65 if (bitmap[wx] != ~0)
78 word = bitmap[wx];
110 * Search the bitmap for a consecutive pattern of 1's.
118 bt_range(ulong_t *bitmap, size_t *pos1, size_t *pos2, size_t end_pos
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Opcode/
Opcode.xs 28 static void set_opset_bits (pTHX_ char *bitmap, SV *bitspec, int on, char *opname);
47 char *bitmap;
62 bitmap = SvPV(opset_all, len);
65 bitmap[i] = (char)0xFF;
67 bitmap[len-1] = (PL_maxo & 0x07) ? ~(0xFF << (PL_maxo & 0x07)) : 0xFF;
163 set_opset_bits(pTHX_ char *bitmap, SV *bitspec, int on, char *opname)
177 bitmap[offset] |= 1 << bit;
179 bitmap[offset] &= ~(1 << bit);
188 while(len-- > 0) bitmap[len] |= specbits[len];
190 while(len-- > 0) bitmap[len] &= ~specbits[len]
    [all...]
  /onnv/onnv-gate/usr/src/cmd/avs/dsbitmap/
dsbitmap.c 66 "bitmap\n"));
68 "bitmap\n"));
201 do_sndr(char *volume, char *bitmap)
206 uint64_t bsize_simple; /* size of the simple bitmap */
207 uint64_t bsize_diskq; /* size of the diskq bitmap, 8 bit refcnt */
208 uint64_t bsize_diskq32; /* size of the diskq bitmap, 32 bit refcnt */
212 if (bitmap) {
213 bblocks = get_partsize(bitmap);
224 (void) printf(gettext("Remote Mirror bitmap sizing\n\n"));
228 (void) printf(gettext("Required bitmap volume size:\n"))
350 char *volume, *bitmap; local
    [all...]
  /onnv/onnv-gate/usr/src/common/openssl/ssl/
d1_lib.c 102 d1->bitmap.length=64;
104 d1->bitmap.length=sizeof(d1->bitmap.map) * 8;
106 pq_64bit_init(&(d1->bitmap.map));
107 pq_64bit_init(&(d1->bitmap.max_seq_num));
177 pq_64bit_free(&(s->d1->bitmap.map));
178 pq_64bit_free(&(s->d1->bitmap.max_seq_num));
d1_pkt.c 127 static int dtls1_record_replay_check(SSL *s, DTLS1_BITMAP *bitmap,
129 static void dtls1_record_bitmap_update(SSL *s, DTLS1_BITMAP *bitmap);
456 dtls1_record_bitmap_update(s, &(s->d1->bitmap));/* Mark receipt of record. */
491 DTLS1_BITMAP *bitmap; local
590 bitmap = dtls1_get_bitmap(s, rr, &is_next_epoch);
591 if ( bitmap == NULL)
598 if ( ! dtls1_record_replay_check(s, bitmap, &(rr->seq_num)))
613 dtls1_record_bitmap_update(s, bitmap);
    [all...]
dtls1.h 93 unsigned long length; /* sizeof the bitmap in bits */
153 DTLS1_BITMAP bitmap; member in struct:dtls1_state_st
  /onnv/onnv-gate/usr/src/cmd/sendmail/db/lock/
lock_deadlock.c 69 u_int32_t *bitmap, *deadlock, i, killid, nentries, nlockers; local
91 /* Build the waits-for bitmap. */
92 if ((ret = __dd_build(dbenv, &bitmap, &nlockers, &idmap)) != 0)
99 __dd_debug(dbenv, idmap, bitmap, nlockers);
102 deadlock = __dd_find(bitmap, idmap, nlockers);
139 killid = (deadlock - bitmap) / nentries;
181 __os_free(bitmap, 0);
202 u_int32_t *bitmap, count, *entryp, i, id, nentries, *tmpmap; local
229 * Allocate enough space for a count by count bitmap matrix.
236 sizeof(u_int32_t) * nentries, &bitmap)) != 0
    [all...]
  /onnv/onnv-gate/usr/src/uts/intel/asm/
Makefile 33 bitmap.h \
  /onnv/onnv-gate/usr/src/uts/common/io/nxge/
nxge_txc.c 152 uint64_t bitmap; local
173 /* Read in the old bitmap. */
175 &bitmap);
177 if (bitmap & (1 << channel)) {
183 bitmap |= (1 << channel);
185 "==> nxge_txc_tdc_bind(): bitmap = %lx", bitmap));
187 /* Write out the new bitmap. */
189 (uint32_t)bitmap)) != NPI_SUCCESS) {
254 uint64_t bitmap; local
303 uint32_t bitmap = 0; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/sparc/os/
bitmap_arch.c 29 * Architecture specific definition for bitmap related routines.
32 #include <sys/bitmap.h>
  /onnv/onnv-gate/usr/src/lib/brand/solaris10/s10_support/
s10_support.c 309 * Determine which features/behaviors should be emulated and construct a bitmap
310 * representing the results. Associate the bitmap with the zone so that
311 * the brand's emulation library will be able to retrieve the bitmap and
323 s10_emul_bitmap_t bitmap; local
330 * most basic emulation and, therefore, doesn't need a bitmap.
340 bzero(bitmap, sizeof (bitmap));
379 * Set the feature's flag in the bitmap.
381 bitmap[(bit_index >> 3)] |= (1 << (bit_index & 0x7));
386 * We're done scanning files. Set the zone's emulation bitmap
    [all...]
  /onnv/onnv-gate/usr/src/common/iscsi/
utils.c 100 prt_bitmap(int bitmap, char *str, char *buf, int size)
107 * The maximum space required will if the bitmap was all 1's which
123 do_put = ((1 << *p) & bitmap);
124 bitmap &= ~(1 << *p);
  /onnv/onnv-gate/usr/src/uts/common/xen/public/
physdev.h 93 * Set the current VCPU's I/O-port permissions bitmap.
100 XEN_GUEST_HANDLE(uint8) bitmap; member in struct:physdev_set_iobitmap
102 uint8_t *bitmap;
  /onnv/onnv-gate/usr/src/uts/sun4u/pcbe/
opl_pcbe.c 631 uint64_t bitmap = 0; local
637 bitmap |= (1 << i);
640 return (bitmap);
719 uint8_t bitmap = 0; /* for used pic config */ local
730 bitmap |= (uint8_t)(1 << tmp->opl_picno);
733 if (bitmap == 0)
738 if (bitmap & (1 << i))
818 uint8_t bitmap = 0; /* for used pic config */ local
831 bitmap |= (uint8_t)(1 << ctmp->opl_picno);
834 if (bitmap == 0
    [all...]
  /onnv/onnv-gate/usr/src/cmd/isns/isnsd/
isns_scn.h 99 uint32_t bitmap; member in struct:scn_registry
  /onnv/onnv-gate/usr/src/psm/stand/cpr/sparcv9/sun4u/
Makefile 47 CPRBOOTOBJ = cb_srt0.o cprboot.o machdep.o pages.o bitmap.o util.o
  /onnv/onnv-gate/usr/src/uts/sun4/ml/
xc.s 46 #include <sys/bitmap.h>
  /onnv/onnv-gate/usr/src/uts/sun4v/sys/
machthread.h 35 #include <sys/bitmap.h>

Completed in 4260 milliseconds

1 2 3 4 5 6 7 8 9