Searched refs:__builtin_ctzll (Results 1 - 17 of 17) sorted by relevance

/external/clang/test/CodeGen/
H A D2007-08-22-CTTZ.c7 return __builtin_ctzll(x);
H A Dmips-count-builtins.c28 trailing = __builtin_ctzll(P);
H A Dcount-builtins.c27 trailing = __builtin_ctzll(P);
/external/compiler-rt/lib/builtins/
H A Dffsti2.c32 return __builtin_ctzll(x.s.high) + (1 + sizeof(di_int) * CHAR_BIT);
34 return __builtin_ctzll(x.s.low) + 1;
H A Dctzti2.c29 return __builtin_ctzll((x.s.high & f) | (x.s.low & ~f)) +
H A Dudivmodti4.c98 return n.s.high >> __builtin_ctzll(d.s.high);
135 sr = __builtin_ctzll(d.s.low);
/external/libcxx/include/support/ibm/
H A Dsupport.h32 #define __builtin_ctzll(x) __cnttz8(x) macro
34 #define __builtin_ctzl(x) __builtin_ctzll(x)
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dfind_match_length.h42 int matching_bits = __builtin_ctzll(x);
/external/clang/lib/Headers/
H A Dbmiintrin.h143 return __builtin_ctzll(__X);
H A DIntrin.h601 *_Index = __builtin_ctzll(_Mask);
/external/libcxx/include/support/win32/
H A Dsupport.h123 _LIBCPP_ALWAYS_INLINE int __builtin_ctzll(unsigned long long mask) function
140 #error "Implementation of __builtin_ctzll required"
/external/qemu/include/qemu/
H A Dhost-utils.h205 return val ? __builtin_ctzll(val) : 64;
/external/clang/test/Sema/
H A Dconstant-builtins-2.c130 char ctz6[__builtin_ctzll(0x100LL) == 8 ? 1 : -1];
/external/llvm/include/llvm/Support/
H A DMathExtras.h99 #if __has_builtin(__builtin_ctzll) || __GNUC_PREREQ(4, 0)
100 return __builtin_ctzll(Val);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
H A Dnvfx_fragprog.c47 int idx = __builtin_ctzll(~fpc->r_temps);
/external/mesa3d/src/gallium/drivers/nv30/
H A Dnvfx_fragprog.c47 int idx = __builtin_ctzll(~fpc->r_temps);
/external/valgrind/main/coregrind/m_debuginfo/
H A Dminilzo-inl.c2627 #define lzo_bitops_ctz64(v) ((unsigned) __builtin_ctzll(v))
3160 #define lzo_bitops_ctz64(v) ((unsigned) __builtin_ctzll(v))

Completed in 363 milliseconds