Searched defs:NEEDBITS (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/zlib/
H A Dinfback.c174 #define NEEDBITS(n) \ macro
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(stat
[all...]
H A Dinflate.c478 #define NEEDBITS(n) \ macro
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(
[all...]
/external/qemu/distrib/zlib-1.2.8/
H A Dinfback.c183 #define NEEDBITS(n) \ macro
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(stat
[all...]
H A Dinflate.c499 #define NEEDBITS(n) \ macro
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(
[all...]
/external/zlib/src/
H A Dinfback.c183 #define NEEDBITS(n) \ macro
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(stat
[all...]
H A Dinflate.c499 #define NEEDBITS(n) \ macro
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(
[all...]
/external/freetype/src/gzip/
H A Dinfutil.h75 #define NEEDBITS(j) {while(k<(j)){NEEDBYTE;b|=((uLong)NEXTBYTE)<<k;k+=8;}} macro
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_infback.c183 #define NEEDBITS(n) \ macro
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(stat
[all...]
H A Dfx_zlib_inflate.c499 #define NEEDBITS(n) \ macro
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(
[all...]
/external/zlib/src/contrib/infback9/
H A Dinfback9.c150 #define NEEDBITS(n) \ macro
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(extr
[all...]

Completed in 536 milliseconds