Home
last modified time | relevance | path

Searched refs:_BitScanReverse (Results 1 – 25 of 28) sorted by relevance

12

/src/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerBuiltinsMsvc.h43 if (_BitScanReverse(&LeadZeroIdx, static_cast<unsigned long>(X >> 32))) in Clzll()
47 if (_BitScanReverse(&LeadZeroIdx, static_cast<unsigned long>(X))) in Clzll()
/src/contrib/jemalloc/include/jemalloc/internal/
H A Dbit_util.h126 _BitScanReverse(&bit, (unsigned)x); \
136 if (_BitScanReverse(&bit, \
140 _BitScanReverse(&bit, (unsigned)x); \
/src/sys/contrib/openzfs/module/icp/algs/blake3/
H A Dblake3_impl.h104 _BitScanReverse(&index, x >> 32); in highest_one()
108 _BitScanReverse(&index, x); in highest_one()
/src/contrib/llvm-project/llvm/lib/Support/BLAKE3/
H A Dblake3_impl.h104 _BitScanReverse(&index, (unsigned long)(x >> 32)); in highest_one()
108 _BitScanReverse(&index, (unsigned long)x); in highest_one()
/src/contrib/llvm-project/llvm/include/llvm/ADT/
H A Dbit.h63 unsigned char _BitScanReverse(unsigned long *_Index, unsigned long _Mask);
250 _BitScanReverse(&Index, Val);
/src/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dint_lib.h133 if (_BitScanReverse(&leading_zero, value)) in __builtin_clz()
/src/sys/contrib/openzfs/module/zstd/lib/common/
H A Dbits.h79 _BitScanReverse(&r, val); in ZSTD_countLeadingZeros32()
/src/contrib/xz/src/common/
H A Dtuklib_integer.h817 _BitScanReverse(&i, n); in bsr32()
869 _BitScanReverse(&i, n); in clz32()
/src/contrib/llvm-project/clang/lib/Headers/
H A Dintrin0.h27 unsigned char _BitScanReverse(unsigned long *_Index, unsigned long _Mask);
/src/sys/contrib/zstd/lib/common/
H A Dzstd_internal.h373 _BitScanReverse(&r, val); in ZSTD_highbit32()
H A Dbitstream.h150 _BitScanReverse(&r, val); in BIT_highbit32()
/src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.h405 unsigned char _BitScanReverse(unsigned long *index, unsigned long mask);
425 _BitScanReverse(&up, x); in MostSignificantSetBitIndex()
/src/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltinsAArch64.def145 TARGET_HEADER_BUILTIN(_BitScanReverse, "UcUNi*UNi", "nh", INTRIN_H, ALL_MS_LANGUAGES, "")
H A DBuiltinsARM.def235 TARGET_HEADER_BUILTIN(_BitScanReverse, "UcUNi*UNi", "nh", INTRIN_H, ALL_MS_LANGUAGES, "")
/src/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfData.inc930 if (_BitScanReverse(&LeadZeroIdx, (unsigned long)(X >> 32)))
934 if (_BitScanReverse(&LeadZeroIdx, (unsigned long)(X)))
/src/contrib/llvm-project/compiler-rt/include/profile/
H A DInstrProfData.inc930 if (_BitScanReverse(&LeadZeroIdx, (unsigned long)(X >> 32)))
934 if (_BitScanReverse(&LeadZeroIdx, (unsigned long)(X)))
/src/sys/contrib/zstd/lib/compress/
H A Dzstd_compress_internal.h779 _BitScanReverse(&r, (unsigned long)val); in ZSTD_NbCommonBytes()
/src/sys/contrib/zstd/lib/dictBuilder/
H A Dzdict.c194 _BitScanReverse(&r, (unsigned long)val); in ZDICT_NbCommonBytes()
/src/sys/contrib/zstd/lib/legacy/
H A Dzstd_v01.c343 return _BitScanReverse(&r, val) ? (unsigned)r : 0; in FSE_highbit32()
H A Dzstd_v03.c357 return _BitScanReverse(&r, val) ? (unsigned)r : 0; in BIT_highbit32()
H A Dzstd_v04.c628 return _BitScanReverse(&r, val) ? (unsigned)r : 0; in BIT_highbit32()
H A Dzstd_v02.c354 return _BitScanReverse(&r, val) ? (unsigned)r : 0; in BIT_highbit32()
H A Dzstd_v06.c861 return _BitScanReverse(&r, val) ? (unsigned)r : 0; in BITv06_highbit32()
H A Dzstd_v05.c757 return _BitScanReverse(&r, val) ? (unsigned)r : 0; in BITv05_highbit32()
/src/crypto/krb5/src/util/verto/
H A Dev.c990 _BitScanReverse (&r, x); in ecb_ld32()

12