Home
last modified time | relevance | path

Searched refs:__builtin_popcountll (Results 1 – 21 of 21) sorted by relevance

/external/clang/lib/Headers/
Dpopcntintrin.h76 return __builtin_popcountll(__A); in _mm_popcnt_u64()
92 return __builtin_popcountll(__A); in _popcnt64()
Dintrin.h569 return __builtin_popcountll(_Value); in __popcnt64()
/external/libcxx/include/support/ibm/
Dsupport.h23 #define __builtin_popcountll(x) __popcnt8(x) macro
25 #define __builtin_popcountl(x) __builtin_popcountll(x)
/external/clang/test/Sema/
Dconstant-builtins-2.c140 char popcount8[__builtin_popcountll(0LL) == 0 ? 1 : -1];
141 char popcount9[__builtin_popcountll(0xF0F0LL) == 8 ? 1 : -1];
142 char popcount10[__builtin_popcountll(~0LL) == BITSIZE(long long) ? 1 : -1];
/external/clang/test/CodeGen/
Dcount-builtins.c28 pop = __builtin_popcountll(P); in test_i64()
/external/mesa3d/m4/
Dax_gcc_builtin.m472 # __builtin_popcountll
147 [__builtin_popcountll], [$1(0)],
/external/vixl/src/
Dcompiler-intrinsics-vixl.h139 return __builtin_popcountll(value);
/external/libcxx/include/support/win32/
Dsupport.h86 _LIBCPP_ALWAYS_INLINE int __builtin_popcountll(unsigned long long x) in __builtin_popcountll() function
/external/swiftshader/third_party/subzero/crosstest/
Dtest_bitmanip_intrin.ll3 ; E.g., my_ctpop(unsigned long long) vs __builtin_popcountll(...)
/external/mesa3d/src/mesa/main/
Dimports.h336 #define _mesa_bitcount_64(i) __builtin_popcountll(i)
/external/valgrind/coregrind/
Dm_compiler.c63 __builtin_popcountll(ULong x) in __builtin_popcountll() function
/external/v8/src/base/
Dbits.h47 return __builtin_popcountll(value); in CountPopulation64()
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DMathExtras.h299 return __builtin_popcountll(Value); in CountPopulation_64()
/external/mesa3d/src/gallium/auxiliary/util/
Du_math.h505 return __builtin_popcountll(n); in util_bitcount64()
/external/llvm/include/llvm/Support/
DMathExtras.h456 return __builtin_popcountll(Value);
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DMathExtras.h478 return __builtin_popcountll(Value);
/external/valgrind/coregrind/m_debuginfo/
Dminilzo-inl.c2633 #define lzo_bitops_popcount64(v) ((unsigned) __builtin_popcountll(v))
3166 #define lzo_bitops_popcount64(v) ((unsigned) __builtin_popcountll(v))
/external/clang/include/clang/Basic/
DBuiltins.def405 BUILTIN(__builtin_popcountll, "iULLi", "nc")
/external/valgrind/coregrind/m_syswrap/
Dsyswrap-linux.c6525__builtin_popcountll(((struct vki_ethtool_sset_info *)ir->vki_ifr_data)->sset_mask) * sizeof(__vki… in PRE()
9395__builtin_popcountll(((struct vki_ethtool_sset_info *)ir->vki_ifr_data)->sset_mask) * sizeof(__vki… in POST()
/external/mesa3d/
Dconfigure.ac227 AX_GCC_BUILTIN([__builtin_popcountll])
/external/libcxx/include/
Dalgorithm830 …IBCPP_INLINE_VISIBILITY int __pop_count(unsigned long long __x) {return __builtin_popcountll(__x);}