/src/bin/ksh/ |
ksh_limval.h | 23 #ifndef BITS 24 # define BITS(t) (BITSPERBYTE * sizeof(t))
|
/src/usr.bin/systat/ |
convtbl.c | 46 #define BITS (1) 74 [SC_BIT] = { BIT, BITS, "b", "bit" },
|
/src/common/dist/zlib/ |
infback.c | 86 unsigned sym, bits; local in function:fixedtables 97 bits = 9; 98 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work); 104 bits = 5; 105 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work); 129 bits = state->bits; \ 140 state->bits = bits; \ 147 bits = 0; 251 unsigned bits; \/* bits in bit buffer *\/ local in function:inflateBack [all...] |
inflate.c | 32 * - Add comments on state->bits assertion in inffast.c 124 state->bits = 0; 166 /* set number of window bits, free window if different */ 225 int ZEXPORT inflatePrime(z_streamp strm, int bits, int value) { 229 if (bits == 0) 232 if (bits < 0) { 234 state->bits = 0; 237 if (bits > 16 || state->bits + (uInt)bits > 32) return Z_STREAM_ERROR 262 unsigned sym, bits; local in function:fixedtables 598 unsigned bits; \/* bits in bit buffer *\/ local in function:inflate [all...] |
/src/common/dist/zlib/contrib/infback9/ |
infback9.c | 51 unsigned sym, bits, low, size; local in function:makefixed9 64 bits = 9; 65 inflate_table9(LENS, state.lens, 288, &(next), &(bits), state.work); 71 bits = 5; 72 inflate_table9(DISTS, state.lens, 32, &(next), &(bits), state.work); 89 printf("{%u,%u,%d}", lenfix[low].op, lenfix[low].bits, 100 printf("{%u,%u,%d}", distfix[low].op, distfix[low].bits, 115 bits = 0; \ 138 hold += (unsigned long)(*next++) << bits; \ 139 bits += 8; 224 unsigned bits; \/* bits in bit buffer *\/ local in function:inflateBack9 [all...] |
/src/usr.bin/gzip/ |
zuncompress.c | 44 #define de_stack ((char_type *)&tab_suffixof(1 << BITS)) 46 #define BITS 16 /* Default bits. */ 57 #define INIT_BITS 9 /* Initial number of bits/code. */ 90 int zs_n_bits; /* Number of bits/code. */ 91 int zs_maxbits; /* User settable max # bits/code. */ 110 char_type zs_buf[BITS]; 123 char_type zs_gbuf[BITS]; 249 if (zs->zs_maxbits > BITS || zs->zs_maxbits < 12) { 292 * bound by 1 << BITS - 256 335 int r_off, bits, i; local in function:getcode [all...] |
/src/usr.bin/compress/ |
zopen.c | 58 * zopen(filename, mode, bits) 76 #define BITS 16 /* Default bits. */ 79 /* A code_int must be able to hold 2**BITS values of type int, and also -1. */ 94 #define INIT_BITS 9 /* Initial number of bits/code. */ 104 int zs_n_bits; /* Number of bits/code. */ 105 int zs_maxbits; /* User settable max # bits/code. */ 124 char_type zs_buf[BITS]; 137 char_type zs_gbuf[BITS]; 179 * the codetab. The tab_suffix table needs 2**BITS characters. We get thi 371 int bits, r_off; local in function:output 571 int r_off, bits; local in function:getcode [all...] |
/src/games/battlestar/ |
extern.h | 45 #define BITS (CHAR_BIT * sizeof (unsigned int)) 50 #define testbit(array, index) (array[index/BITS] & (1U << (index % BITS))) 51 #define setbit(array, index) (array[index/BITS] |= (1U << (index % BITS))) 52 #define clearbit(array, index) (array[index/BITS] &= ~(1U << (index % BITS))) 215 #define NUMOFWORDS ((NUMOFOBJECTS + BITS - 1) / BITS)
|