HomeSort by relevance Sort by last modified time
    Searched refs:NEEDBITS (Results 1 - 6 of 6) sorted by null

  /external/grub/stage2/
gunzip.c 446 NEEDBITS(j)
450 where NEEDBITS makes sure that b has at least j bits in it, and
457 ask for bits with NEEDBITS that are beyond the end of the stream.
458 So, NEEDBITS should not read any more bytes than are needed to
483 #define NEEDBITS(n) do {while(k<(n)){b|=((ulg)get_byte())<<k;k+=8;}} while (0)
740 NEEDBITS ((unsigned) bl);
751 NEEDBITS (e);
773 NEEDBITS (e);
778 NEEDBITS ((unsigned) bd);
789 NEEDBITS (e)
    [all...]
  /external/zlib/src/contrib/infback9/
infback9.c 150 #define NEEDBITS(n) \
284 NEEDBITS(3);
317 NEEDBITS(32);
348 NEEDBITS(14);
365 NEEDBITS(3);
392 NEEDBITS(here.bits);
398 NEEDBITS(here.bits + 2);
410 NEEDBITS(here.bits + 3);
417 NEEDBITS(here.bits + 7);
518 NEEDBITS(extra)
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
infback.c 174 #define NEEDBITS(n) \
290 NEEDBITS(3);
320 NEEDBITS(32);
351 NEEDBITS(14);
370 NEEDBITS(3);
397 NEEDBITS(this.bits);
403 NEEDBITS(this.bits + 2);
415 NEEDBITS(this.bits + 3);
422 NEEDBITS(this.bits + 7);
523 NEEDBITS(state->extra)
    [all...]
inflate.c 443 #define NEEDBITS(n) \
490 next state. The NEEDBITS() macro is usually the way the state evaluates
491 whether it can proceed or should return. NEEDBITS() does the return if
495 NEEDBITS(n);
499 where NEEDBITS(n) either returns from inflate() if there isn't enough
505 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
507 NEEDBITS(n) uses PULLBYTE() to get an available byte of input, or to return
514 if NEEDBITS() returns in the loop. For example, want, need, and keep
515 would all have to actually be part of the saved state in case NEEDBITS()
520 NEEDBITS(n)
    [all...]
  /external/zlib/src/
infback.c 183 #define NEEDBITS(n) \
299 NEEDBITS(3);
329 NEEDBITS(32);
360 NEEDBITS(14);
379 NEEDBITS(3);
411 NEEDBITS(here.bits + 2);
423 NEEDBITS(here.bits + 3);
430 NEEDBITS(here.bits + 7);
540 NEEDBITS(state->extra);
573 NEEDBITS(state->extra)
    [all...]
inflate.c 498 #define NEEDBITS(n) \
540 next state. The NEEDBITS() macro is usually the way the state evaluates
541 whether it can proceed or should return. NEEDBITS() does the return if
545 NEEDBITS(n);
549 where NEEDBITS(n) either returns from inflate() if there isn't enough
555 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
557 NEEDBITS(n) uses PULLBYTE() to get an available byte of input, or to return
564 if NEEDBITS() returns in the loop. For example, want, need, and keep
565 would all have to actually be part of the saved state in case NEEDBITS()
570 NEEDBITS(n)
    [all...]

Completed in 113 milliseconds