Searched refs:__builtin_popcountll (Results 1 – 21 of 21) sorted by relevance
76 return __builtin_popcountll(__A); in _mm_popcnt_u64()92 return __builtin_popcountll(__A); in _popcnt64()
569 return __builtin_popcountll(_Value); in __popcnt64()
23 #define __builtin_popcountll(x) __popcnt8(x) macro25 #define __builtin_popcountl(x) __builtin_popcountll(x)
140 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];
28 pop = __builtin_popcountll(P); in test_i64()
72 # __builtin_popcountll147 [__builtin_popcountll], [$1(0)],
139 return __builtin_popcountll(value);
86 _LIBCPP_ALWAYS_INLINE int __builtin_popcountll(unsigned long long x) in __builtin_popcountll() function
3 ; E.g., my_ctpop(unsigned long long) vs __builtin_popcountll(...)
336 #define _mesa_bitcount_64(i) __builtin_popcountll(i)
63 __builtin_popcountll(ULong x) in __builtin_popcountll() function
47 return __builtin_popcountll(value); in CountPopulation64()
299 return __builtin_popcountll(Value); in CountPopulation_64()
505 return __builtin_popcountll(n); in util_bitcount64()
456 return __builtin_popcountll(Value);
478 return __builtin_popcountll(Value);
2633 #define lzo_bitops_popcount64(v) ((unsigned) __builtin_popcountll(v))3166 #define lzo_bitops_popcount64(v) ((unsigned) __builtin_popcountll(v))
405 BUILTIN(__builtin_popcountll, "iULLi", "nc")
6525 …__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()
227 AX_GCC_BUILTIN([__builtin_popcountll])
830 …IBCPP_INLINE_VISIBILITY int __pop_count(unsigned long long __x) {return __builtin_popcountll(__x);}