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

/freebsd-12-stable/sys/kern/
H A Dsubr_inflate.c333 NEEDBITS(glbl,j)
337 where NEEDBITS makes sure that b has at least j bits in it, and
355 #define NEEDBITS(glbl,n) { \ macro
672 NEEDBITS(glbl, (unsigned) bl)
679 NEEDBITS(glbl, e)
694 NEEDBITS(glbl, e)
699 NEEDBITS(glbl, (unsigned) bd)
706 NEEDBITS(glbl, e)
709 NEEDBITS(glbl, e)
763 NEEDBITS(glb
[all...]
/freebsd-12-stable/sys/contrib/zlib/
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.c516 #define NEEDBITS(n) \ macro
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(
[all...]
/freebsd-12-stable/sys/cddl/contrib/opensolaris/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...]
/freebsd-12-stable/sys/libkern/
H A Dzlib.c3603 #define NEEDBITS(j) {while(k<(j)){NEEDBYTE;b|=((uLong)NEXTBYTE)<<k;k+=8;}} macro
3757 NEEDBITS(3)
3805 NEEDBITS(32)
3836 NEEDBITS(14)
3862 NEEDBITS(3)
3891 NEEDBITS(t)
3904 NEEDBITS(t + i)
4729 NEEDBITS(j)
4767 NEEDBITS(j)
4776 NEEDBITS(
[all...]

Completed in 185 milliseconds