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

  /external/syslinux/memdisk/
inflate.c 183 NEEDBITS(j)
187 where NEEDBITS makes sure that b has at least j bits in it, and
194 ask for bits with NEEDBITS that are beyond the end of the stream.
195 So, NEEDBITS should not read any more bytes than are needed to
220 #define NEEDBITS(n) {while(k<(n)){b|=((ulg)NEXTBYTE())<<k;k+=8;}}
515 NEEDBITS((unsigned)bl)
522 NEEDBITS(e)
539 NEEDBITS(e)
544 NEEDBITS((unsigned)bd)
551 NEEDBITS(e
    [all...]
  /external/zlib/src/contrib/infback9/
infback9.c 150 #define NEEDBITS(n) \
282 NEEDBITS(3);
315 NEEDBITS(32);
346 NEEDBITS(14);
363 NEEDBITS(3);
390 NEEDBITS(here.bits);
396 NEEDBITS(here.bits + 2);
408 NEEDBITS(here.bits + 3);
415 NEEDBITS(here.bits + 7);
516 NEEDBITS(extra)
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/contrib/infback9/
infback9.c 150 #define NEEDBITS(n) \
282 NEEDBITS(3);
315 NEEDBITS(32);
346 NEEDBITS(14);
363 NEEDBITS(3);
390 NEEDBITS(here.bits);
396 NEEDBITS(here.bits + 2);
408 NEEDBITS(here.bits + 3);
415 NEEDBITS(here.bits + 7);
516 NEEDBITS(extra)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
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/syslinux/com32/lib/zlib/
infback.c 174 #define NEEDBITS(n) \
290 NEEDBITS(3);
320 NEEDBITS(32);
351 NEEDBITS(14);
370 NEEDBITS(3);
397 NEEDBITS(here.bits);
403 NEEDBITS(here.bits + 2);
415 NEEDBITS(here.bits + 3);
422 NEEDBITS(here.bits + 7);
532 NEEDBITS(state->extra)
    [all...]
inflate.c 478 #define NEEDBITS(n) \
525 next state. The NEEDBITS() macro is usually the way the state evaluates
526 whether it can proceed or should return. NEEDBITS() does the return if
530 NEEDBITS(n);
534 where NEEDBITS(n) either returns from inflate() if there isn't enough
540 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
542 NEEDBITS(n) uses PULLBYTE() to get an available byte of input, or to return
549 if NEEDBITS() returns in the loop. For example, want, need, and keep
550 would all have to actually be part of the saved state in case NEEDBITS()
555 NEEDBITS(n)
    [all...]
  /external/freetype/src/gzip/
infcodes.c 122 NEEDBITS(j)
160 NEEDBITS(j)
169 NEEDBITS(j)
192 NEEDBITS(j)
infblock.c 139 NEEDBITS(3)
186 NEEDBITS(32)
217 NEEDBITS(14)
241 NEEDBITS(3)
271 NEEDBITS(t)
284 NEEDBITS(t + i)
infutil.h 75 #define NEEDBITS(j) {while(k<(j)){NEEDBYTE;b|=((uLong)NEXTBYTE)<<k;k+=8;}}
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
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 499 #define NEEDBITS(n) \
541 next state. The NEEDBITS() macro is usually the way the state evaluates
542 whether it can proceed or should return. NEEDBITS() does the return if
546 NEEDBITS(n);
550 where NEEDBITS(n) either returns from inflate() if there isn't enough
556 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
558 NEEDBITS(n) uses PULLBYTE() to get an available byte of input, or to return
565 if NEEDBITS() returns in the loop. For example, want, need, and keep
566 would all have to actually be part of the saved state in case NEEDBITS()
571 NEEDBITS(n);
    [all...]
  /external/python/cpython2/Modules/zlib/
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 499 #define NEEDBITS(n) \
541 next state. The NEEDBITS() macro is usually the way the state evaluates
542 whether it can proceed or should return. NEEDBITS() does the return if
546 NEEDBITS(n);
550 where NEEDBITS(n) either returns from inflate() if there isn't enough
556 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
558 NEEDBITS(n) uses PULLBYTE() to get an available byte of input, or to return
565 if NEEDBITS() returns in the loop. For example, want, need, and keep
566 would all have to actually be part of the saved state in case NEEDBITS()
571 NEEDBITS(n)
    [all...]
  /external/python/cpython3/Modules/zlib/
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 516 #define NEEDBITS(n) \
558 next state. The NEEDBITS() macro is usually the way the state evaluates
559 whether it can proceed or should return. NEEDBITS() does the return if
563 NEEDBITS(n);
567 where NEEDBITS(n) either returns from inflate() if there isn't enough
573 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
575 NEEDBITS(n) uses PULLBYTE() to get an available byte of input, or to return
582 if NEEDBITS() returns in the loop. For example, want, need, and keep
583 would all have to actually be part of the saved state in case NEEDBITS()
588 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 516 #define NEEDBITS(n) \
558 next state. The NEEDBITS() macro is usually the way the state evaluates
559 whether it can proceed or should return. NEEDBITS() does the return if
563 NEEDBITS(n);
567 where NEEDBITS(n) either returns from inflate() if there isn't enough
573 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
575 NEEDBITS(n) uses PULLBYTE() to get an available byte of input, or to return
582 if NEEDBITS() returns in the loop. For example, want, need, and keep
583 would all have to actually be part of the saved state in case NEEDBITS()
588 NEEDBITS(n)
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/
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 499 #define NEEDBITS(n) \
541 next state. The NEEDBITS() macro is usually the way the state evaluates
542 whether it can proceed or should return. NEEDBITS() does the return if
546 NEEDBITS(n);
550 where NEEDBITS(n) either returns from inflate() if there isn't enough
556 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
558 NEEDBITS(n) uses PULLBYTE() to get an available byte of input, or to return
565 if NEEDBITS() returns in the loop. For example, want, need, and keep
566 would all have to actually be part of the saved state in case NEEDBITS()
571 NEEDBITS(n)
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
inflate.c 516 #define NEEDBITS(n) \
558 next state. The NEEDBITS() macro is usually the way the state evaluates
559 whether it can proceed or should return. NEEDBITS() does the return if
563 NEEDBITS(n);
567 where NEEDBITS(n) either returns from inflate() if there isn't enough
573 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
575 NEEDBITS(n) uses PULLBYTE() to get an available byte of input, or to return
582 if NEEDBITS() returns in the loop. For example, want, need, and keep
583 would all have to actually be part of the saved state in case NEEDBITS()
588 NEEDBITS(n)
    [all...]

Completed in 75 milliseconds