Home
last modified time | relevance | path

Searched refs:ffsll (Results 1 – 25 of 30) sorted by relevance

12

/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/
Dffs-1.ll13 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 …]
Ddisable-simplify-libcalls.ll43 declare i32 @ffsll(i64)
273 %ret = call i32 @ffsll(i64 %y)
275 ; CHECK: call i32 @ffsll
/external/mesa3d/src/util/
Dbitscan.h69 #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()
Dbitscan.c66 ffsll(long long int val) in ffsll() function
/external/swiftshader/third_party/LLVM/test/Transforms/SimplifyLibCalls/
DFFS.ll11 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/
Dffs-1.ll13 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)
Ddisable-simplify-libcalls.ll43 declare i32 @ffsll(i64)
273 %ret = call i32 @ffsll(i64 %y)
275 ; CHECK: call i32 @ffsll
/external/mesa3d/src/intel/compiler/
Dbrw_vue_map.c172 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()
Dbrw_nir_analyze_ubo_ranges.c219 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/
Dstrings.h26 static __forceinline int ffsll(unsigned __int64 x) { in ffsll() function
53 # define ffsll(x) __builtin_ffsll(x) macro
/external/jemalloc/include/msvc_compat/
Dstrings.h28 static __forceinline int ffsll(unsigned __int64 x) in ffsll() function
54 # define ffsll(x) __builtin_ffsll(x) macro
/external/mesa3d/src/intel/vulkan/
DgenX_gpu_memcpy.c44 unsigned a_log2 = ffsll(a) - 1; in gcd_pow2_u64()
45 unsigned b_log2 = ffsll(b) - 1; in gcd_pow2_u64()
Danv_blorp.c588 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/
Dbuiltins.c78 P(ffsll, (N)); in main()
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_shader.c122 unsigned index = ffsll(generics_mask) - 1; in svga_remap_generics()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_tcs.c87 const int varying = ffsll(varyings) - 1; in create_passthrough_tcs()
Dbrw_draw_upload.c490 GLuint first = ffsll(vs_inputs) - 1; in brw_prepare_vertices()
/external/llvm/test/Transforms/InferFunctionAttrs/
Dno-proto.ll228 ; CHECK: declare void @ffsll(...)
229 declare void @ffsll(...)
Dannotate.ll247 ; CHECK: declare i32 @ffsll(i64)
248 declare i32 @ffsll(i64)
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InferFunctionAttrs/
Dno-proto.ll354 ; CHECK: declare void @ffsll(...)
355 declare void @ffsll(...)
Dannotate.ll373 ; CHECK: declare i32 @ffsll(i64)
374 declare i32 @ffsll(i64)
/external/llvm/include/llvm/Analysis/
DTargetLibraryInfo.def464 /// int ffsll(long long int i);
465 TLI_DEFINE_ENUM_INTERNAL(ffsll)
466 TLI_DEFINE_STRING_INTERNAL("ffsll")
/external/llvm/lib/Analysis/
DTargetLibraryInfo.cpp362 TLI.setUnavailable(LibFunc::ffsll); in initialize()
955 case LibFunc::ffsll: in isValidProtoForLibFunc()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DTargetLibraryInfo.def634 /// int ffsll(long long int i);
635 TLI_DEFINE_ENUM_INTERNAL(ffsll)
636 TLI_DEFINE_STRING_INTERNAL("ffsll")
/external/mesa3d/src/intel/blorp/
Dblorp_blit.c2550 unsigned a_log2 = ffsll(a) - 1; in gcd_pow2_u64()
2551 unsigned b_log2 = ffsll(b) - 1; in gcd_pow2_u64()

12