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

/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dgunzip.c448 NEEDBITS(j)
452 where NEEDBITS makes sure that b has at least j bits in it, and
459 ask for bits with NEEDBITS that are beyond the end of the stream.
460 So, NEEDBITS should not read any more bytes than are needed to
485 #define NEEDBITS(n) do {while(k<(n)){b|=((ulg)get_byte())<<k;k+=8;}} while (0) macro
759 NEEDBITS ((unsigned) bl);
770 NEEDBITS (e);
792 NEEDBITS (e);
797 NEEDBITS ((unsigned) bd);
808 NEEDBITS (
[all...]
/illumos-gate/usr/src/boot/lib/libz/
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...]
/illumos-gate/usr/src/uts/common/zmod/
H A Dinflate.c450 #define NEEDBITS(n) \ macro
497 next state. The NEEDBITS() macro is usually the way the state evaluates
498 whether it can proceed or should return. NEEDBITS() does the return if
502 NEEDBITS(n);
506 where NEEDBITS(n) either returns from inflate() if there isn't enough
512 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
514 NEEDBITS(n) uses PULLBYTE() to get an available byte of input, or to return
521 if NEEDBITS() returns in the loop. For example, want, need, and keep
522 would all have to actually be part of the saved state in case NEEDBITS()
527 NEEDBITS(
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.c3107 #define NEEDBITS(j) {while(k<(j)){NEEDBYTE;b|=((uLong)NEXTBYTE)<<k;k+=8;}} macro
3277 NEEDBITS(3)
3325 NEEDBITS(32)
3356 NEEDBITS(14)
3383 NEEDBITS(3)
3410 NEEDBITS(t)
3423 NEEDBITS(t + i)
4185 NEEDBITS(j)
4223 NEEDBITS(j)
4232 NEEDBITS(
[all...]
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.c4209 #define NEEDBITS(j) { while (k < (j)) { NEEDBYTE; b |= ((uLong)NEXTBYTE)<<k; \ macro
4374 NEEDBITS(3);
4422 NEEDBITS(32);
4455 NEEDBITS(14);
4483 NEEDBITS(3);
4516 NEEDBITS(t);
4528 NEEDBITS(t + i);
5373 NEEDBITS(j);
5411 NEEDBITS(j);
5422 NEEDBITS(
[all...]

Completed in 72 milliseconds