/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/ |
D | ffs-1.ll | 13 declare i32 @ffsll(i64) 39 ; GENERIC-NEXT: [[RET:%.*]] = call i32 @ffsll(i64 0) 45 %ret = call i32 @ffsll(i64 0) 89 ; GENERIC-NEXT: [[RET:%.*]] = call i32 @ffsll(i64 1024) 95 %ret = call i32 @ffsll(i64 1024) 101 ; GENERIC-NEXT: [[RET:%.*]] = call i32 @ffsll(i64 65536) 107 %ret = call i32 @ffsll(i64 65536) 113 ; GENERIC-NEXT: [[RET:%.*]] = call i32 @ffsll(i64 17179869184) 119 %ret = call i32 @ffsll(i64 17179869184) 125 ; GENERIC-NEXT: [[RET:%.*]] = call i32 @ffsll(i64 281474976710656) [all …]
|
D | disable-simplify-libcalls.ll | 43 declare i32 @ffsll(i64) 273 %ret = call i32 @ffsll(i64 %y) 275 ; CHECK: call i32 @ffsll
|
/external/mesa3d/src/util/ |
D | bitscan.h | 69 #define ffsll __builtin_ffsll macro 72 ffsll(long long int i) 82 ffsll(long long int val); 105 const int i = ffsll(*mask) - 1; in u_bit_scan64() 145 *start = ffsll(*mask) - 1; in u_bit_scan_consecutive_range64() 146 *count = ffsll(~(*mask >> *start)) - 1; in u_bit_scan_consecutive_range64()
|
D | bitscan.c | 66 ffsll(long long int val) in ffsll() function
|
/external/swiftshader/third_party/LLVM/test/Transforms/SimplifyLibCalls/ |
D | FFS.ll | 11 declare i32 @ffsll(i64) 19 %val4 = call i32 @ffsll( i64 1024 ) ; <i32> [#uses=1] 20 %val5 = call i32 @ffsll( i64 17179869184 ) ; <i32> [#uses=1] 21 %val6 = call i32 @ffsll( i64 1152921504606846976 ) ; <i32> [#uses=1] 34 %2 = call i32 @ffsll(i64 %0) ; <i32> [#uses=1]
|
/external/llvm/test/Transforms/InstCombine/ |
D | ffs-1.ll | 13 declare i32 @ffsll(i64) 33 %ret = call i32 @ffsll(i64 0) 70 %ret = call i32 @ffsll(i64 1024) 77 %ret = call i32 @ffsll(i64 65536) 84 %ret = call i32 @ffsll(i64 17179869184) 91 %ret = call i32 @ffsll(i64 281474976710656) 98 %ret = call i32 @ffsll(i64 1152921504606846976) 129 %ret = call i32 @ffsll(i64 %x)
|
D | disable-simplify-libcalls.ll | 43 declare i32 @ffsll(i64) 273 %ret = call i32 @ffsll(i64 %y) 275 ; CHECK: call i32 @ffsll
|
/external/mesa3d/src/intel/compiler/ |
D | brw_vue_map.c | 172 const int varying = ffsll(builtins) - 1; in brw_compute_vue_map() 182 const int varying = ffsll(generics) - 1; in brw_compute_vue_map() 240 const int varying = ffsll(patch_slots) - 1; in brw_compute_tess_vue_map() 252 const int varying = ffsll(vertex_slots) - 1; in brw_compute_tess_vue_map()
|
D | brw_nir_analyze_ubo_ranges.c | 219 int first_bit = ffsll(offsets) - 1; in brw_nir_analyze_ubo_ranges() 225 int first_hole = ffsll(~offsets & ~((1ull << first_bit) - 1)) - 1; in brw_nir_analyze_ubo_ranges()
|
/external/jemalloc_new/include/msvc_compat/ |
D | strings.h | 26 static __forceinline int ffsll(unsigned __int64 x) { in ffsll() function 53 # define ffsll(x) __builtin_ffsll(x) macro
|
/external/jemalloc/include/msvc_compat/ |
D | strings.h | 28 static __forceinline int ffsll(unsigned __int64 x) in ffsll() function 54 # define ffsll(x) __builtin_ffsll(x) macro
|
/external/mesa3d/src/intel/vulkan/ |
D | genX_gpu_memcpy.c | 44 unsigned a_log2 = ffsll(a) - 1; in gcd_pow2_u64() 45 unsigned b_log2 = ffsll(b) - 1; in gcd_pow2_u64()
|
D | anv_blorp.c | 588 unsigned a_log2 = ffsll(a) - 1; in gcd_pow2_u64() 589 unsigned b_log2 = ffsll(b) - 1; in gcd_pow2_u64()
|
/external/clang/test/CodeGen/ |
D | builtins.c | 78 P(ffsll, (N)); in main()
|
/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_shader.c | 122 unsigned index = ffsll(generics_mask) - 1; in svga_remap_generics()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_tcs.c | 87 const int varying = ffsll(varyings) - 1; in create_passthrough_tcs()
|
D | brw_draw_upload.c | 490 GLuint first = ffsll(vs_inputs) - 1; in brw_prepare_vertices()
|
/external/llvm/test/Transforms/InferFunctionAttrs/ |
D | no-proto.ll | 228 ; CHECK: declare void @ffsll(...) 229 declare void @ffsll(...)
|
D | annotate.ll | 247 ; CHECK: declare i32 @ffsll(i64) 248 declare i32 @ffsll(i64)
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InferFunctionAttrs/ |
D | no-proto.ll | 354 ; CHECK: declare void @ffsll(...) 355 declare void @ffsll(...)
|
D | annotate.ll | 373 ; CHECK: declare i32 @ffsll(i64) 374 declare i32 @ffsll(i64)
|
/external/llvm/include/llvm/Analysis/ |
D | TargetLibraryInfo.def | 464 /// int ffsll(long long int i); 465 TLI_DEFINE_ENUM_INTERNAL(ffsll) 466 TLI_DEFINE_STRING_INTERNAL("ffsll")
|
/external/llvm/lib/Analysis/ |
D | TargetLibraryInfo.cpp | 362 TLI.setUnavailable(LibFunc::ffsll); in initialize() 955 case LibFunc::ffsll: in isValidProtoForLibFunc()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
D | TargetLibraryInfo.def | 634 /// int ffsll(long long int i); 635 TLI_DEFINE_ENUM_INTERNAL(ffsll) 636 TLI_DEFINE_STRING_INTERNAL("ffsll")
|
/external/mesa3d/src/intel/blorp/ |
D | blorp_blit.c | 2550 unsigned a_log2 = ffsll(a) - 1; in gcd_pow2_u64() 2551 unsigned b_log2 = ffsll(b) - 1; in gcd_pow2_u64()
|