HomeSort by: relevance | last modified time | path
    Searched refs:lenbits (Results 1 - 5 of 5) sorted by relevancy

  /src/common/dist/zlib/contrib/infback9/
infback9.c 232 unsigned lenbits; /* index bits for lencode */ local in function:inflateBack9
283 lenbits = 9;
361 lenbits = 7;
363 &(lenbits), state->work);
375 here = lencode[BITS(lenbits)];
431 /* build code tables -- note: do not change the lenbits or distbits
436 lenbits = 9;
438 &(state->next), &(lenbits), state->work);
460 here = lencode[BITS(lenbits)];
  /src/common/dist/zlib/
inflate.h 112 unsigned lenbits; /* index bits for lencode */ member in struct:inflate_state
infback.c 114 state->lenbits = 9;
376 state->lenbits = 7;
378 &(state->lenbits), state->work);
390 here = state->lencode[BITS(state->lenbits)];
445 /* build code tables -- note: do not change the lenbits or distbits
450 state->lenbits = 9;
452 &(state->lenbits), state->work);
484 here = state->lencode[BITS(state->lenbits)];
inflate.c 290 state->lenbits = 9;
936 state->lenbits = 7;
938 &(state->lenbits), state->work);
951 here = state->lencode[BITS(state->lenbits)];
1006 /* build code tables -- note: do not change the lenbits or distbits
1011 state->lenbits = 9;
1013 &(state->lenbits), state->work);
1046 here = state->lencode[BITS(state->lenbits)];
inffast.c 97 lmask = (1U << state->lenbits) - 1;

Completed in 15 milliseconds