Home
last modified time | relevance | path

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

12

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerBuiltinsMsvc.h43 if (_BitScanReverse(&LeadZeroIdx, static_cast<unsigned long>(X >> 32))) in Clzll()
46 if (_BitScanReverse(&LeadZeroIdx, static_cast<unsigned long>(X))) in Clzll()
/freebsd-13.1/contrib/llvm-project/libcxx/include/
H A D__bits97 if (_BitScanReverse(&__where, __x))
116 if (_BitScanReverse(&__where, static_cast<unsigned long>(__x >> 32)))
118 if (_BitScanReverse(&__where, static_cast<unsigned long>(__x)))
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dint_lib.h133 if (_BitScanReverse(&leading_zero, value)) in __builtin_clz()
/freebsd-13.1/contrib/xz/src/common/
H A Dtuklib_integer.h605 _BitScanReverse(&i, n); in bsr32()
657 _BitScanReverse(&i, n); in clz32()
/freebsd-13.1/contrib/jemalloc/include/jemalloc/internal/
H A Dbit_util.h175 _BitScanReverse(&ret, x); in lg_floor()
/freebsd-13.1/sys/contrib/zstd/lib/common/
H A Dzstd_internal.h428 return _BitScanReverse(&r, val) ? (unsigned)r : 0; in ZSTD_highbit32()
H A Dbitstream.h149 return _BitScanReverse(&r, val) ? (unsigned)r : 0; in BIT_highbit32()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DMathExtras.h36 unsigned char _BitScanReverse(unsigned long *_Index, unsigned long _Mask);
192 _BitScanReverse(&Index, Val);
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.h380 unsigned char _BitScanReverse(unsigned long *index, unsigned long mask);
400 _BitScanReverse(&up, x); in MostSignificantSetBitIndex()
/freebsd-13.1/contrib/llvm-project/clang/lib/Headers/
H A Dintrin.h134 unsigned char _BitScanReverse(unsigned long *_Index, unsigned long _Mask);
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltinsAArch64.def123 TARGET_HEADER_BUILTIN(_BitScanReverse, "UcUNi*UNi", "nh", "intrin.h", ALL_MS_LANGUAGES, "")
H A DBuiltinsARM.def226 TARGET_HEADER_BUILTIN(_BitScanReverse, "UcUNi*UNi", "nh", "intrin.h", ALL_MS_LANGUAGES, "")
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfData.inc833 if (_BitScanReverse(&LeadZeroIdx, (unsigned long)(X >> 32)))
837 if (_BitScanReverse(&LeadZeroIdx, (unsigned long)(X)))
/freebsd-13.1/contrib/llvm-project/compiler-rt/include/profile/
H A DInstrProfData.inc833 if (_BitScanReverse(&LeadZeroIdx, (unsigned long)(X >> 32)))
837 if (_BitScanReverse(&LeadZeroIdx, (unsigned long)(X)))
/freebsd-13.1/sys/contrib/zstd/lib/compress/
H A Dzstd_compress_internal.h619 return _BitScanReverse( &r, (unsigned long)val ) ? (unsigned)(r >> 3) : 0; in ZSTD_NbCommonBytes()
/freebsd-13.1/sys/contrib/zstd/lib/dictBuilder/
H A Dzdict.c173 _BitScanReverse( &r, (unsigned long)val ); in ZDICT_NbCommonBytes()
/freebsd-13.1/contrib/subversion/subversion/libsvn_subr/lz4/
H A Dlz4.c346 _BitScanReverse( &r, (unsigned long)val ); in LZ4_NbCommonBytes()
/freebsd-13.1/sys/contrib/zstd/lib/legacy/
H A Dzstd_v01.c346 _BitScanReverse ( &r, val ); in FSE_highbit32()
H A Dzstd_v03.c360 _BitScanReverse ( &r, val ); in BIT_highbit32()
H A Dzstd_v04.c631 _BitScanReverse ( &r, val ); in BIT_highbit32()
H A Dzstd_v02.c357 _BitScanReverse ( &r, val ); in BIT_highbit32()
H A Dzstd_v05.c760 _BitScanReverse ( &r, val ); in BITv05_highbit32()
H A Dzstd_v06.c864 _BitScanReverse ( &r, val ); in BITv06_highbit32()
H A Dzstd_v07.c534 _BitScanReverse ( &r, val ); in BITv07_highbit32()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp1100 _BitScanReverse, enumerator
1151 return MSVCIntrin::_BitScanReverse; in translateArmToMsvcIntrin()
1297 return MSVCIntrin::_BitScanReverse; in translateAarch64ToMsvcIntrin()
1451 return MSVCIntrin::_BitScanReverse; in translateX86ToMsvcIntrin()
1479 case MSVCIntrin::_BitScanReverse: { in EmitMSVCBuiltinExpr()

12