Searched refs:__builtin_popcountll (Results 1 – 17 of 17) sorted by relevance
46 return __builtin_popcountll(__A); in _mm_popcnt_u64()52 return __builtin_popcountll(__A); in _popcnt64()
570 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()
133 return __builtin_popcountll(value);
104 _LIBCPP_ALWAYS_INLINE int __builtin_popcountll(unsigned long long x) in __builtin_popcountll() function
63 __builtin_popcountll(ULong x) in __builtin_popcountll() function
39 return __builtin_popcountll(value); in CountPopulation64()
453 for (; a2 != a2_end; ++a2, ++b2) result += __builtin_popcountll((*a2) ^ (*b2));461 result += __builtin_popcountll(a_final ^ b_final);
372 bcount += __builtin_popcountll(mask_block); in LshTable()
582 #define _mesa_bitcount_64(i) __builtin_popcountll(i)
433 return __builtin_popcountll(Value);
2633 #define lzo_bitops_popcount64(v) ((unsigned) __builtin_popcountll(v))3166 #define lzo_bitops_popcount64(v) ((unsigned) __builtin_popcountll(v))
399 BUILTIN(__builtin_popcountll, "iULLi", "nc")
5897 …__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()
804 …IBCPP_INLINE_VISIBILITY int __pop_count(unsigned long long __x) {return __builtin_popcountll(__x);}