Home | History | Annotate | Download | only in net

Lines Matching defs:hash_bits

411     uInt  hash_bits;      /* log2(hash_size) */
418 * hash_shift * MIN_MATCH >= hash_bits
864 s->hash_bits = memLevel + 7;
865 s->hash_size = 1 << s->hash_bits;
867 s->hash_shift = ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH);
1380 /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
1383 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
1412 * are equal and that HASH_BITS >= 8. Compare 2 bytes at a time at
1447 * the hash keys are equal and that HASH_BITS >= 8.
1500 /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
1503 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
1519 * the hash keys are equal and that HASH_BITS >= 8.