Home | History | Annotate | Download | only in zlib

Lines Matching refs:hash_bits

446     s->hash_bits = (uInt)memLevel + 7;
447 s->hash_size = 1 << s->hash_bits;
449 s->hash_shift = ((s->hash_bits + MIN_MATCH-1) / MIN_MATCH);
891 if (s->w_bits != 15 || s->hash_bits != 8 + 7)
892 return (s->w_bits <= s->hash_bits && s->level ? fixedlen : storelen) +
1378 /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
1381 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
1416 * are equal and that HASH_BITS >= 8. Compare 2 bytes at a time at
1452 * the hash keys are equal and that HASH_BITS >= 8.
1504 /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
1507 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
1524 * the hash keys are equal and that HASH_BITS >= 8.