Home
last modified time | relevance | path

Searched refs:hbits (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_size_class_map.h164 const uptr hbits = (size >> (l - S)) & M; in ClassID() local
167 return kMidClass + (l1 << S) + hbits + (lbits > 0); in ClassID()
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_ldm.c89 static U32 ZSTD_ldm_getTag(U64 hash, U32 hbits, U32 numTagBits) in ZSTD_ldm_getTag() argument
91 assert(numTagBits < 32 && hbits <= 32); in ZSTD_ldm_getTag()
92 if (32 - hbits < numTagBits) { in ZSTD_ldm_getTag()
95 return (hash >> (32 - hbits - numTagBits)) & (((U32)1 << numTagBits) - 1); in ZSTD_ldm_getTag()