Home
last modified time | relevance | path

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

12

/external/llvm-project/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.ll44 declare i32 @ffsll(i64)
274 %ret = call i32 @ffsll(i64 %y)
276 ; CHECK: call i32 @ffsll
/external/mesa3d/src/util/
Dbitscan.h74 #define ffsll __builtin_ffsll macro
77 ffsll(long long int i)
87 ffsll(long long int val);
110 const int i = ffsll(*mask) - 1; in u_bit_scan64()
196 *start = ffsll(*mask) - 1; in u_bit_scan_consecutive_range64()
197 *count = ffsll(~(*mask >> *start)) - 1; in u_bit_scan_consecutive_range64()
Dbitscan.c66 ffsll(long long int val) in ffsll() function
/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.c189 const int varying = ffsll(builtins) - 1; in brw_compute_vue_map()
199 const int varying = ffsll(generics) - 1; in brw_compute_vue_map()
257 const int varying = ffsll(patch_slots) - 1; in brw_compute_tess_vue_map()
269 const int varying = ffsll(vertex_slots) - 1; in brw_compute_tess_vue_map()
Dbrw_nir_analyze_ubo_ranges.c266 int first_bit = ffsll(offsets) - 1; in brw_nir_analyze_ubo_ranges()
272 int first_hole = ffsll(~offsets & ~((1ull << first_bit) - 1)) - 1; in brw_nir_analyze_ubo_ranges()
Dbrw_compiler.c222 const uint64_t bit = 1ULL << (ffsll(mask) - 1); in brw_get_compiler_config_value()
/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/mesa3d/src/amd/compiler/
Daco_util.h317 it.bit = ffsll(words[i]) - 1; in cbegin()
363 bit = ffsll(set->words[word]) - 1;
369 bit = ffsll(m) - 1;
/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()
/external/mesa3d/src/compiler/nir/
Dnir_lower_memcpy.c118 unsigned copy_size = 1u << MIN2(ffsll(remaining) - 1, 4); in lower_memcpy_impl()
/external/clang/test/CodeGen/
Dbuiltins.c78 P(ffsll, (N)); in main()
/external/llvm-project/clang/test/CodeGen/
Dbuiltins.c78 P(ffsll, (N)); in main()
/external/mesa3d/src/intel/perf/
Dgen_perf.c893 queries_mask |= BITFIELD64_BIT(ffsll(perf->counter_infos[idx].query_mask) - 1); in get_passes_mask()
934 uint32_t query_idx = ffsll(perf->counter_infos[idx].query_mask & queries_mask) - 1; in gen_perf_get_counters_passes()
/external/llvm/test/Transforms/InferFunctionAttrs/
Dno-proto.ll228 ; CHECK: declare void @ffsll(...)
229 declare void @ffsll(...)
/external/llvm-project/llvm/test/Transforms/InferFunctionAttrs/
Dno-proto.ll354 ; CHECK: declare void @ffsll(...)
355 declare void @ffsll(...)
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_shader.c122 unsigned index = ffsll(generics_mask) - 1; in svga_remap_generics()
/external/mesa3d/docs/relnotes/
D9.1.3.rst50 solaris build broken with missing ffsll
/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/mesa3d/src/gallium/auxiliary/draw/
Ddraw_pipe_aaline.c157 return ffsll(~bitfield) - 1; in free_bit()
/external/llvm/lib/Analysis/
DTargetLibraryInfo.cpp362 TLI.setUnavailable(LibFunc::ffsll); in initialize()
955 case LibFunc::ffsll: in isValidProtoForLibFunc()
/external/llvm-project/llvm/include/llvm/Analysis/
DTargetLibraryInfo.def736 /// int ffsll(long long int i);
737 TLI_DEFINE_ENUM_INTERNAL(ffsll)
738 TLI_DEFINE_STRING_INTERNAL("ffsll")
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DTargetLibraryInfo.def709 /// int ffsll(long long int i);
710 TLI_DEFINE_ENUM_INTERNAL(ffsll)
711 TLI_DEFINE_STRING_INTERNAL("ffsll")

12