Home
last modified time | relevance | path

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

/external/clang/lib/Headers/
Dpopcntintrin.h46 return __builtin_popcountll(__A); in _mm_popcnt_u64()
52 return __builtin_popcountll(__A); in _popcnt64()
DIntrin.h570 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/vixl/src/vixl/
Dcompiler-intrinsics.h133 return __builtin_popcountll(value);
/external/libcxx/include/support/win32/
Dsupport.h104 _LIBCPP_ALWAYS_INLINE int __builtin_popcountll(unsigned long long x) in __builtin_popcountll() function
/external/valgrind/coregrind/
Dm_compiler.c63 __builtin_popcountll(ULong x) in __builtin_popcountll() function
/external/v8/src/base/
Dbits.h39 return __builtin_popcountll(value); in CountPopulation64()
/external/opencv3/modules/flann/include/opencv2/flann/
Ddist.h453 for (; a2 != a2_end; ++a2, ++b2) result += __builtin_popcountll((*a2) ^ (*b2));
461 result += __builtin_popcountll(a_final ^ b_final);
Dlsh_table.h372 bcount += __builtin_popcountll(mask_block); in LshTable()
/external/mesa3d/src/mesa/main/
Dimports.h582 #define _mesa_bitcount_64(i) __builtin_popcountll(i)
/external/llvm/include/llvm/Support/
DMathExtras.h433 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.def399 BUILTIN(__builtin_popcountll, "iULLi", "nc")
/external/valgrind/coregrind/m_syswrap/
Dsyswrap-linux.c5897__builtin_popcountll(((struct vki_ethtool_sset_info *)ir->vki_ifr_data)->sset_mask) * sizeof(__vki… in PRE()
8735__builtin_popcountll(((struct vki_ethtool_sset_info *)ir->vki_ifr_data)->sset_mask) * sizeof(__vki… in POST()
/external/libcxx/include/
Dalgorithm804 …IBCPP_INLINE_VISIBILITY int __pop_count(unsigned long long __x) {return __builtin_popcountll(__x);}