| /llvm-project-15.0.7/llvm/test/CodeGen/X86/ |
| H A D | pr40737.ll | 4 define i8 @_BitScanForward(ptr nocapture %Index, i32 %Mask) { 5 ; CHECK-LABEL: _BitScanForward:
|
| /llvm-project-15.0.7/libcxx/include/ |
| H A D | __bits | 81 if (_BitScanForward(&__where, __x)) 100 if (_BitScanForward(&__where, static_cast<unsigned long>(__x))) 102 if (_BitScanForward(&__where, static_cast<unsigned long>(__x >> 32)))
|
| /llvm-project-15.0.7/polly/lib/External/isl/ |
| H A D | isl_ffs.c | 20 non_zero = _BitScanForward(&index, mask); in isl_ffs()
|
| /llvm-project-15.0.7/libcxx/src/include/ryu/ |
| H A D | ryu.h | 81 _LIBCPP_HIDE_FROM_ABI inline unsigned char _BitScanForward(unsigned long* __index, unsigned int __m… in _BitScanForward() function
|
| /llvm-project-15.0.7/polly/lib/External/ |
| H A D | isl_config.h.cmake | 15 /* Define to 1 if you have the declaration of `_BitScanForward', and to 0 if
|
| H A D | CMakeLists.txt | 100 int main(void) { (void)_BitScanForward(NULL, 0); return 0; }
|
| /llvm-project-15.0.7/compiler-rt/lib/builtins/ |
| H A D | int_lib.h | 124 if (_BitScanForward(&trailing_zero, value)) in __builtin_ctz()
|
| /llvm-project-15.0.7/clang/test/CodeGen/ |
| H A D | ms-intrinsics-other.c | 25 return _BitScanForward(Index, Mask); in test_BitScanForward()
|
| H A D | ms-intrinsics.c | 150 return _BitScanForward(++Index, Mask); in test_BitScanForward()
|
| /llvm-project-15.0.7/libcxx/src/ryu/ |
| H A D | d2s.cpp | 486 (void) _BitScanForward(&_Trailing_zero_bits, _Low_mantissa); in __to_chars() 489 (void) _BitScanForward(&_Trailing_zero_bits, _High_mantissa); in __to_chars()
|
| H A D | f2s.cpp | 537 …(void) _BitScanForward(&_Trailing_zero_bits, __v.__mantissa); // __v.__mantissa is guaranteed nonz… in __to_chars()
|
| /llvm-project-15.0.7/llvm/include/llvm/Support/ |
| H A D | MathExtras.h | 34 unsigned char _BitScanForward(unsigned long *_Index, unsigned long _Mask); 123 _BitScanForward(&Index, Val);
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_common.h | 391 unsigned char _BitScanForward(unsigned long *index, unsigned long mask); 429 _BitScanForward(&up, x); in LeastSignificantSetBitIndex()
|
| /llvm-project-15.0.7/clang/lib/Headers/ |
| H A D | intrin.h | 134 unsigned char _BitScanForward(unsigned long *_Index, unsigned long _Mask);
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | BuiltinsAArch64.def | 125 TARGET_HEADER_BUILTIN(_BitScanForward, "UcUNi*UNi", "nh", "intrin.h", ALL_MS_LANGUAGES, "")
|
| H A D | BuiltinsARM.def | 228 TARGET_HEADER_BUILTIN(_BitScanForward, "UcUNi*UNi", "nh", "intrin.h", ALL_MS_LANGUAGES, "")
|
| H A D | BuiltinsX86.def | 2065 TARGET_HEADER_BUILTIN(_BitScanForward, "UcUNi*UNi", "nh", "intrin.h", ALL_MS_LANGUAGES, "")
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CGBuiltin.cpp | 1126 _BitScanForward, enumerator 1175 return MSVCIntrin::_BitScanForward; in translateArmToMsvcIntrin() 1321 return MSVCIntrin::_BitScanForward; in translateAarch64ToMsvcIntrin() 1475 return MSVCIntrin::_BitScanForward; in translateX86ToMsvcIntrin() 1505 case MSVCIntrin::_BitScanForward: in EmitMSVCBuiltinExpr() 1531 if (BuiltinID == MSVCIntrin::_BitScanForward) { in EmitMSVCBuiltinExpr()
|