Searched refs:__countr_zero (Results 1 – 14 of 14) sorted by relevance
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/ |
H A D | uint128_t.h | 233 __countr_zero(const uint128_t x) in __countr_zero() function 235 auto c = std::__countr_zero(x.lo); in __countr_zero() 237 return 64 + std::__countr_zero(x.hi); in __countr_zero()
|
H A D | floating_to_chars.cc | 738 const int trailing_zeros = __countr_zero(effective_mantissa) / 4; in __floating_to_chars_hex()
|
/netbsd-src/external/apache2/llvm/dist/libcxx/include/ |
H A D | bit | 104 int __countr_zero(_Tp __t) _NOEXCEPT 106 …static_assert(__libcpp_is_unsigned_integer<_Tp>::value, "__countr_zero requires an unsigned intege… 177 ? __countr_zero(static_cast<_Tp>(~__t)) 260 return __countr_zero(__t);
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/ |
H A D | bit | 153 __countr_zero(_Tp __x) noexcept 189 return std::__countr_zero((_Tp)~__x); 321 { return std::__countr_zero(__x); }
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/std/ |
H A D | bit | 248 __countr_zero(_Tp __x) noexcept 284 return std::__countr_zero((_Tp)~__x); 415 { return std::__countr_zero(__x); }
|
H A D | numeric | 129 const int __i = std::__countr_zero(__m); 131 const int __j = std::__countr_zero(__n); 149 __n >>= std::__countr_zero(__n);
|
H A D | charconv | 461 const int __log2_base = __countr_zero(unsigned(__base & 0x3f));
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/ |
H A D | simd_fixed_size.h | 2012 { return std::__countr_zero(__data(__k).to_ullong()); }
|
H A D | simd_builtin.h | 2989 { return std::__countr_zero(_SuperImpl::_S_to_bits(__data(__k))._M_to_bits()); } in _S_find_first_set()
|
H A D | simd.h | 1035 __f(std::__countr_zero(__k));
|
H A D | simd_x86.h | 5283 return std::__countr_zero(__k._M_data._M_data); in _S_find_first_set()
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/ |
H A D | ChangeLog-2018 | 3504 * include/std/bit (__countl_zero, __countr_zero, __popcount): Use 3839 (__rotl, __rotr, __countl_zero, __countl_one, __countr_zero)
|
H A D | ChangeLog-2020 | 5242 (__countr_zero, __countr_one, __popcount, __bit_ceil) 7916 (__countr_zero, __countr_one, __popcount, __ceil2, __floor2, __log2p1):
|
H A D | ChangeLog | 969 unsigned for call to __countr_zero.
|