Lines Matching refs:bit
191 * Initialize the hash table (avoiding 64K overflow for 16 bit systems).
550 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
951 * To simplify the source, this is not supported for 16-bit MSDOS (which
991 /* following zmemcpy do not work for 16-bit MSDOS */
1082 IPos bit = offset & 7;
1088 if (bit) {
1090 s->class_bitmap[byte] &= mask[bit];
1091 s->class_bitmap[byte] |= class_bit_value << bit;
1092 bit++;
1094 if (bit == 8) {
1095 bit = 0;
1108 s->class_bitmap[byte] &= mask[bit];
1109 s->class_bitmap[byte] |= class_bit_value << bit;
1110 bit++;
1120 IPos bit = window_offset & 7;
1121 return (s->class_bitmap[byte] >> bit) & 1;
1465 /* Very unlikely, but possible on 16 bit machine if
1482 /* Slide the hash table (could be avoided with 32 bit values
1659 /* strstart == 0 is possible when wraparound on 16-bit machine */