HomeSort by: relevance | last modified time | path
    Searched defs:NEEDBITS (Results 1 - 4 of 4) sorted by relevancy

  /src/common/dist/zlib/
infback.c 177 #define NEEDBITS(n) \
288 NEEDBITS(3);
318 NEEDBITS(32);
349 NEEDBITS(14);
368 NEEDBITS(3);
400 NEEDBITS(here.bits + 2);
412 NEEDBITS(here.bits + 3);
419 NEEDBITS(here.bits + 7);
530 NEEDBITS(state->extra);
563 NEEDBITS(state->extra)
    [all...]
inflate.c 486 #define NEEDBITS(n) \
528 next state. The NEEDBITS() macro is usually the way the state evaluates
529 whether it can proceed or should return. NEEDBITS() does the return if
533 NEEDBITS(n);
537 where NEEDBITS(n) either returns from inflate() if there isn't enough
543 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
545 NEEDBITS(n) uses PULLBYTE() to get an available byte of input, or to return
552 if NEEDBITS() returns in the loop. For example, want, need, and keep
553 would all have to actually be part of the saved state in case NEEDBITS()
558 NEEDBITS(n)
    [all...]
  /src/common/dist/zlib/contrib/infback9/
infback9.c 145 #define NEEDBITS(n) \
272 NEEDBITS(3);
305 NEEDBITS(32);
336 NEEDBITS(14);
353 NEEDBITS(3);
380 NEEDBITS(here.bits);
386 NEEDBITS(here.bits + 2);
398 NEEDBITS(here.bits + 3);
405 NEEDBITS(here.bits + 7);
506 NEEDBITS(extra)
    [all...]
  /src/sys/net/
zlib.c 3938 #define NEEDBITS(j) {while(k<(j)){NEEDBYTE;b|=((uLong)NEXTBYTE)<<k;k+=8;}}
4087 NEEDBITS(3)
4133 NEEDBITS(32)
4164 NEEDBITS(14)
4188 NEEDBITS(3)
4218 NEEDBITS(t)
4231 NEEDBITS(t + i)
5174 NEEDBITS(j)
5212 NEEDBITS(j)
5222 NEEDBITS(j
    [all...]

Completed in 19 milliseconds