| /src/common/dist/zlib/ |
| trees.c | 170 put_short(s, s->bi_buf); 171 s->bi_buf = 0; 174 put_byte(s, (Byte)s->bi_buf); 175 s->bi_buf >>= 8; 185 put_short(s, s->bi_buf); 187 put_byte(s, (Byte)s->bi_buf); 189 s->bi_buf = 0; 259 /* If not enough room in bi_buf, use (valid) bits from bi_buf and 264 s->bi_buf |= (ush)value << s->bi_valid [all...] |
| deflate.h | 58 /* size of bit buffer in bi_buf */ 268 ush bi_buf; member in struct:internal_state 273 /* Number of valid bits in bi_buf. All bits above the last valid bit
|
| deflate.c | 744 s->bi_buf |= (ush)((value & ((1 << put) - 1)) << s->bi_valid);
|
| /src/sys/arch/arc/arc/ |
| machdep.c | 134 static char bi_buf[BOOTINFO_SIZE]; /* buffer to store bootinfo data */ variable 190 memcpy(bi_buf, bip, BOOTINFO_SIZE); 191 bootinfo = bi_buf; 212 * Don't clear BSS here since bi_buf[] is allocated in BSS
|
| /src/sys/arch/sgimips/sgimips/ |
| machdep.c | 225 static uint8_t bi_buf[BOOTINFO_SIZE]; /* buffer to store bootinfo data */ variable 302 memcpy(bi_buf, bip, BOOTINFO_SIZE); 303 bootinfo = bi_buf;
|
| /src/sys/net/ |
| zlib.c | 527 ush bi_buf; member in struct:deflate_state 532 /* Number of valid bits in bi_buf. All bits above the last valid bit 2047 /* Number of bits used within bi_buf. (bi_buf might be implemented on 2301 /* If not enough room in bi_buf, use (valid) bits from bi_buf and 2306 s->bi_buf |= (value << s->bi_valid); 2307 put_short(s, s->bi_buf); 2308 s->bi_buf = (ush)value >> (Buf_size - s->bi_valid); 2311 s->bi_buf |= value << s->bi_valid [all...] |