Home
last modified time | relevance | path

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

/freebsd-13.1/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-13.1/sys/contrib/zstd/lib/compress/
H A Dzstd_ldm.c82 static U32 ZSTD_ldm_getTag(U64 hash, U32 hbits, U32 numTagBits) in ZSTD_ldm_getTag() argument
84 assert(numTagBits < 32 && hbits <= 32); in ZSTD_ldm_getTag()
85 if (32 - hbits < numTagBits) { in ZSTD_ldm_getTag()
88 return (hash >> (32 - hbits - numTagBits)) & (((U32)1 << numTagBits) - 1); in ZSTD_ldm_getTag()
/freebsd-13.1/sys/contrib/openzfs/module/zstd/lib/
H A Dzstd.c19612 static U32 ZSTD_ldm_getTag(U64 hash, U32 hbits, U32 numTagBits) in ZSTD_ldm_getTag() argument
19614 assert(numTagBits < 32 && hbits <= 32); in ZSTD_ldm_getTag()
19615 if (32 - hbits < numTagBits) { in ZSTD_ldm_getTag()
19618 return (hash >> (32 - hbits - numTagBits)) & (((U32)1 << numTagBits) - 1); in ZSTD_ldm_getTag()