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

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_stackdepot.cc 24 atomic_uint32_t hash_and_use_count; // hash_bits : 12; use_count : 20;
39 u32 hash_bits = local in function:__sanitizer::StackDepotNode::eq
41 if ((hash & kHashMask) != hash_bits || args.size != size || args.tag != tag)
  /src/common/dist/zlib/
deflate.h 150 uInt hash_bits; /* log2(hash_size) */ member in struct:internal_state
157 * hash_shift * MIN_MATCH >= hash_bits
  /src/sys/net/
zlib.c 411 uInt hash_bits; /* log2(hash_size) */ member in struct:deflate_state
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
    [all...]

Completed in 15 milliseconds