Home
last modified time | relevance | path

Searched refs:__clz (Results 1 – 6 of 6) sorted by relevance

/external/libcxx/test/support/
Dhexfloat.h32 std::__clz(m0)/4*4)), exp); in hexfloat()
/external/libcxx/include/
D__bit_reference422 unsigned __clz = __bits_per_word - __first.__ctz_;
423 difference_type __dn = _VSTD::min(static_cast<difference_type>(__clz), __n);
425 …storage_type __m = (~__storage_type(0) << __first.__ctz_) & (~__storage_type(0) >> (__clz - __dn));
563 unsigned __clz = __bits_per_word - __last.__ctz_;
564 …_storage_type __m = (~__storage_type(0) << (__last.__ctz_ - __dn)) & (~__storage_type(0) >> __clz);
728 unsigned __clz = __bits_per_word - __first.__ctz_;
729 difference_type __dn = _VSTD::min(static_cast<difference_type>(__clz), __n);
731 …storage_type __m = (~__storage_type(0) << __first.__ctz_) & (~__storage_type(0) >> (__clz - __dn));
1051 unsigned __clz = __bits_per_word - __first1.__ctz_;
1052 difference_type __dn = _VSTD::min(static_cast<difference_type>(__clz), __n);
[all …]
Dalgorithm783 __clz(unsigned __x)
790 __clz(unsigned long __x)
797 __clz(unsigned long long __x)
3039 size_t __w = _Dt - __clz(_Rp) - 1;
D__hash_table81 return size_t(1) << (std::numeric_limits<size_t>::digits - __clz(__n-1));
/external/clang/test/CodeGen/
Darm_acle.c152 return __clz(t); in test_clz()
/external/clang/lib/Headers/
Darm_acle.h138 __clz(uint32_t t) { in __clz() function