Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
/llvm-project-15.0.7/libcxx/include/
H A D__bits114 if (_BitScanReverse(&__where, __x))
133 if (_BitScanReverse(&__where, static_cast<unsigned long>(__x >> 32)))
135 if (_BitScanReverse(&__where, static_cast<unsigned long>(__x)))
/llvm-project-15.0.7/llvm/lib/Support/BLAKE3/
H A Dblake3_impl.h111 _BitScanReverse(&index, (unsigned long)(x >> 32)); in highest_one()
115 _BitScanReverse(&index, (unsigned long)x); in highest_one()
/llvm-project-15.0.7/compiler-rt/lib/builtins/
H A Dint_lib.h131 if (_BitScanReverse(&leading_zero, value)) in __builtin_clz()
/llvm-project-15.0.7/clang/test/CodeGen/
H A Dms-intrinsics-other.c39 return _BitScanReverse(Index, Mask); in test_BitScanReverse()
H A Dms-intrinsics.c165 return _BitScanReverse(++Index, Mask); in test_BitScanReverse()
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DMathExtras.h36 unsigned char _BitScanReverse(unsigned long *_Index, unsigned long _Mask);
192 _BitScanReverse(&Index, Val);
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.h392 unsigned char _BitScanReverse(unsigned long *index, unsigned long mask);
412 _BitScanReverse(&up, x); in MostSignificantSetBitIndex()
/llvm-project-15.0.7/clang/lib/Headers/
H A Dintrin.h135 unsigned char _BitScanReverse(unsigned long *_Index, unsigned long _Mask);
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DBuiltinsAArch64.def126 TARGET_HEADER_BUILTIN(_BitScanReverse, "UcUNi*UNi", "nh", "intrin.h", ALL_MS_LANGUAGES, "")
H A DBuiltinsARM.def229 TARGET_HEADER_BUILTIN(_BitScanReverse, "UcUNi*UNi", "nh", "intrin.h", ALL_MS_LANGUAGES, "")
H A DBuiltinsX86.def2066 TARGET_HEADER_BUILTIN(_BitScanReverse, "UcUNi*UNi", "nh", "intrin.h", ALL_MS_LANGUAGES, "")
/llvm-project-15.0.7/llvm/include/llvm/ProfileData/
H A DInstrProfData.inc843 if (_BitScanReverse(&LeadZeroIdx, (unsigned long)(X >> 32)))
847 if (_BitScanReverse(&LeadZeroIdx, (unsigned long)(X)))
/llvm-project-15.0.7/compiler-rt/include/profile/
H A DInstrProfData.inc843 if (_BitScanReverse(&LeadZeroIdx, (unsigned long)(X >> 32)))
847 if (_BitScanReverse(&LeadZeroIdx, (unsigned long)(X)))
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGBuiltin.cpp1127 _BitScanReverse, enumerator
1178 return MSVCIntrin::_BitScanReverse; in translateArmToMsvcIntrin()
1324 return MSVCIntrin::_BitScanReverse; in translateAarch64ToMsvcIntrin()
1478 return MSVCIntrin::_BitScanReverse; in translateX86ToMsvcIntrin()
1506 case MSVCIntrin::_BitScanReverse: { in EmitMSVCBuiltinExpr()