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

1 2 3 4 5 6

  /netvirt/usr/src/uts/common/sys/
bitmap.h 34 #pragma ident "@(#)bitmap.h 1.29 06/09/11 SMI"
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
    [all...]
bitset.h 36 #include <sys/bitmap.h>
pghw.h 40 #include <sys/bitmap.h>
  /netvirt/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
  /netvirt/usr/src/uts/common/os/
bitmap.c 31 #pragma ident "@(#)bitmap.c 1.24 05/06/08 SMI"
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
    [all...]
  /netvirt/usr/src/cmd/perl/5.6.1/distrib/ext/Opcode/
Opcode.xs 17 static void set_opset_bits (pTHX_ char *bitmap, SV *bitspec, int on, char *opname);
36 char *bitmap;
50 bitmap = SvPV(opset_all, len);
53 bitmap[i] = 0xFF;
55 bitmap[len-1] = (PL_maxo & 0x07) ? ~(0xFF << (PL_maxo & 0x07)) : 0xFF;
143 set_opset_bits(pTHX_ char *bitmap, SV *bitspec, int on, char *opname)
155 bitmap[offset] |= 1 << bit;
157 bitmap[offset] &= ~(1 << bit);
166 while(len-- > 0) bitmap[len] |= specbits[len];
168 while(len-- > 0) bitmap[len] &= ~specbits[len]
    [all...]
  /netvirt/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...]
  /netvirt/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
  /netvirt/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...]
  /netvirt/usr/src/uts/intel/asm/
Makefile 33 bitmap.h \
  /netvirt/usr/src/uts/sparc/os/
bitmap_arch.c 29 * Architecture specific definition for bitmap related routines.
32 #include <sys/bitmap.h>
  /netvirt/usr/src/uts/sun4u/pcbe/
opl_pcbe.c 501 uint64_t bitmap = 0; local
506 bitmap |= (1 << i);
509 return (bitmap);
581 uint8_t bitmap = 0; /* for used pic config */ local
592 bitmap |= (uint8_t)(1 << tmp->opl_picno);
595 if (bitmap == 0)
600 if (bitmap & (1 << i))
680 uint8_t bitmap = 0; /* for used pic config */ local
693 bitmap |= (uint8_t)(1 << ctmp->opl_picno);
696 if (bitmap == 0
    [all...]
  /netvirt/usr/src/cmd/perl/5.6.1/distrib/
regcomp.h 97 char bitmap[ANYOF_BITMAP_SIZE]; member in struct:regnode_charclass
104 char bitmap[ANYOF_BITMAP_SIZE]; member in struct:regnode_charclass_class
235 /* Utility macros for the bitmap and classes of ANYOF */
251 #define ANYOF_BITMAP_ZERO(ret) Zero(((struct regnode_charclass*)(ret))->bitmap, ANYOF_BITMAP_SIZE, char)
253 #define ANYOF_BITMAP(p) (((struct regnode_charclass*)(p))->bitmap)
  /netvirt/usr/src/psm/stand/cpr/sparcv9/sun4u/
Makefile 47 CPRBOOTOBJ = cb_srt0.o cprboot.o machdep.o pages.o bitmap.o util.o
  /netvirt/usr/src/uts/common/fs/zfs/sys/
zfs_context.h 40 #include <sys/bitmap.h>
  /netvirt/usr/src/uts/common/xen/public/
physdev.h 78 * Set the current VCPU's I/O-port permissions bitmap.
84 XEN_GUEST_HANDLE_00030205(uint8_t) bitmap; member in struct:physdev_set_iobitmap
  /netvirt/usr/src/uts/sun4/ml/
xc.s 46 #include <sys/bitmap.h>
  /netvirt/usr/src/uts/sun4v/sys/
machthread.h 35 #include <sys/bitmap.h>
  /netvirt/usr/src/cmd/nscd/
nscd_admin.c 332 _nscd_cfg_bitmap_set_nth(cfg->gi.bitmap, 0);
347 _nscd_cfg_bitmap_set_nth(cfg->gi.bitmap, 3);
362 _nscd_cfg_bitmap_set_nth(cfg->gi.bitmap, 5);
369 _nscd_cfg_bitmap_set_nth(cfg->gi.bitmap, 6);
376 _nscd_cfg_bitmap_set_nth(cfg->gi.bitmap, 7);
nscd_config.c 303 _nscd_cfg_bitmap_is_equal(g_info->bitmap, gi->bitmap))
310 _nscd_cfg_bitmap_value(g_info->bitmap), gi->num_param,
311 _nscd_cfg_bitmap_value(gi->bitmap));
415 g_info.bitmap = NSCD_CFG_BITMAP_ZERO;
434 * set bitmap: the rightmost bit represents
439 _nscd_cfg_bitmap_set_nth(g_info.bitmap, fn);
518 g_info.bitmap, gdesc->gi.bitmap)) {
528 _nscd_cfg_bitmap_value(g_info.bitmap),
1890 nscd_cfg_bitmap_t bitmap; local
2279 nscd_cfg_bitmap_t bitmap; local
    [all...]
  /netvirt/usr/src/cmd/lp/filter/postscript/postdmd/
postdmd.c 34 * postdmd - PostScript translator for DMD bitmap files.
39 * Although the program supports two different input bitmap formats, by far the
40 * most important is the Eighth (and Ninth) Edition bitfile format. A bitmap in
42 * zero. The next 8 bytes set the x and y coordinates of the bitmap's origin and
100 * bitmap
102 * v8format flip scanlength scanlines bitmap -
104 * Prints the bitmap that's read from standard input. The bitmap consists
106 * v8format is true the picture is assumed to be an Eighth Edition bitmap,
148 int flip = FALSE; /* ones complement the bitmap */
518 bitmap(FILE *fp) function
    [all...]
  /netvirt/usr/src/cmd/perl/5.8.4/distrib/
regcomp.h 105 char bitmap[ANYOF_BITMAP_SIZE]; /* only compile-time */ member in struct:regnode_charclass
113 char bitmap[ANYOF_BITMAP_SIZE]; /* both compile-time */ member in struct:regnode_charclass_class
273 /* Utility macros for the bitmap and classes of ANYOF */
288 #define ANYOF_BITMAP_ZERO(ret) Zero(((struct regnode_charclass*)(ret))->bitmap, ANYOF_BITMAP_SIZE, char)
290 #define ANYOF_BITMAP(p) (((struct regnode_charclass*)(p))->bitmap)

Completed in 780 milliseconds

1 2 3 4 5 6