HomeSort by: relevance | last modified time | path
    Searched defs:bi_buf (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/arch/arc/arc/
machdep.c 134 static char bi_buf[BOOTINFO_SIZE]; /* buffer to store bootinfo data */ variable in typeref:typename:char[]
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 in typeref:typename:uint8_t[]
302 memcpy(bi_buf, bip, BOOTINFO_SIZE);
303 bootinfo = bi_buf;
  /src/common/dist/zlib/
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
  /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...]

Completed in 16 milliseconds