Searched refs:NEEDBITS (Results 1 - 2 of 2) sorted by relevance

/xnu-2422.115.4/libkern/zlib/
H A Dinfback.c203 #define NEEDBITS(n) \ macro
319 NEEDBITS(3);
349 NEEDBITS(32);
380 NEEDBITS(14);
399 NEEDBITS(3);
426 NEEDBITS(this.bits);
432 NEEDBITS(this.bits + 2);
444 NEEDBITS(this.bits + 3);
451 NEEDBITS(this.bits + 7);
552 NEEDBITS(stat
[all...]
H A Dinflate.c472 #define NEEDBITS(n) \ macro
519 next state. The NEEDBITS() macro is usually the way the state evaluates
520 whether it can proceed or should return. NEEDBITS() does the return if
524 NEEDBITS(n);
528 where NEEDBITS(n) either returns from inflate() if there isn't enough
534 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
536 NEEDBITS(n) uses PULLBYTE() to get an available byte of input, or to return
543 if NEEDBITS() returns in the loop. For example, want, need, and keep
544 would all have to actually be part of the saved state in case NEEDBITS()
549 NEEDBITS(
[all...]

Completed in 28 milliseconds