HomeSort by relevance Sort by last modified time
    Searched refs:ffsll (Results 1 - 20 of 20) sorted by null

  /toolchain/binutils/binutils-2.27/gold/
ffsll.c 0 /* ffsll.c -- version of ffsll for gold. */
27 extern int ffsll (long long);
29 /* This file implements ffsll for systems which don't have it. We use
30 ffsll if possible because gcc supports it as a builtin which will
34 ffsll (long long arg) function
system.h 160 extern "C" int ffsll(long long);
output.h     [all...]
configure     [all...]
  /external/mesa3d/src/util/
bitscan.h 69 #define ffsll __builtin_ffsll macro
72 ffsll(uint64_t i) function
82 ffsll(uint64_t val);
105 const int i = ffsll(*mask) - 1;
145 *start = ffsll(*mask) - 1;
146 *count = ffsll(~(*mask >> *start)) - 1;
180 * Essentially ffsll() in the reverse direction.
bitscan.c 66 ffsll(uint64_t val) function
  /external/jemalloc/include/msvc_compat/
strings.h 28 static __forceinline int ffsll(unsigned __int64 x) function
54 # define ffsll(x) __builtin_ffsll(x) macro
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/
strings.h 54 int ffsll(long long) __pure2;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vue_map.c 171 const int varying = ffsll(builtins) - 1;
181 const int varying = ffsll(generics) - 1;
239 const int varying = ffsll(patch_slots) - 1;
251 const int varying = ffsll(vertex_slots) - 1;
brw_tcs.c 88 const int varying = ffsll(varyings) - 1;
brw_draw_upload.c 568 GLuint first = ffsll(vs_inputs) - 1;
    [all...]
brw_vec4.cpp     [all...]
  /external/mesa3d/src/intel/vulkan/
genX_gpu_memcpy.c 44 unsigned a_log2 = ffsll(a) - 1;
45 unsigned b_log2 = ffsll(b) - 1;
anv_blorp.c 590 unsigned a_log2 = ffsll(a) - 1;
591 unsigned b_log2 = ffsll(b) - 1;
    [all...]
  /external/mesa3d/src/mesa/main/
arrayobj.c 376 const int i = ffsll(mask) - 1;
407 const int i = ffsll(mask) - 1;
  /external/clang/test/CodeGen/
builtins.c 78 P(ffsll, (N));
  /external/mesa3d/src/gallium/drivers/svga/
svga_shader.c 120 unsigned index = ffsll(generics_mask) - 1;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
string.h 530 __extension__ extern int ffsll (long long int __ll)
  /external/llvm/lib/Analysis/
TargetLibraryInfo.cpp 349 // ffsll is available on at least FreeBSD and Linux (GLIBC):
350 // http://svn.freebsd.org/base/head/lib/libc/string/ffsll.c
351 // http://www.gnu.org/software/gnulib/manual/html_node/ffsll.html
362 TLI.setUnavailable(LibFunc::ffsll);
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp     [all...]

Completed in 677 milliseconds