Home
last modified time | relevance | path

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

/external/libcxx/include/
D__bit_reference415 unsigned __clz = __bits_per_word - __first.__ctz_;
416 difference_type __dn = _VSTD::min(static_cast<difference_type>(__clz), __n);
418 …storage_type __m = (~__storage_type(0) << __first.__ctz_) & (~__storage_type(0) >> (__clz - __dn));
556 unsigned __clz = __bits_per_word - __last.__ctz_;
557 …_storage_type __m = (~__storage_type(0) << (__last.__ctz_ - __dn)) & (~__storage_type(0) >> __clz);
721 unsigned __clz = __bits_per_word - __first.__ctz_;
722 difference_type __dn = _VSTD::min(static_cast<difference_type>(__clz), __n);
724 …storage_type __m = (~__storage_type(0) << __first.__ctz_) & (~__storage_type(0) >> (__clz - __dn));
1044 unsigned __clz = __bits_per_word - __first1.__ctz_;
1045 difference_type __dn = _VSTD::min(static_cast<difference_type>(__clz), __n);
[all …]
Dalgorithm809 __clz(unsigned __x)
816 __clz(unsigned long __x)
823 __clz(unsigned long long __x)
3017 size_t __w = _Dt - __clz(_Rp) - 1;
D__hash_table139 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/arm-neon-tests/
Dref_integer.c61 clz = __clz(uvar); in exec_integer()
Dref-rvct-all.txt7904 __clz(0xffffffff) = 0
7905 __clz(0x7fffffff) = 1
7906 __clz(0x3fffffff) = 2
7907 __clz(0x1fffffff) = 3
7908 __clz(0xfffffff) = 4
7909 __clz(0x7ffffff) = 5
7910 __clz(0x3ffffff) = 6
7911 __clz(0x1ffffff) = 7
7912 __clz(0xffffff) = 8
7913 __clz(0x7fffff) = 9
[all …]
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorIntDiv.h39 return __clz(val); in count_leading_zeros()
/external/clang/lib/Headers/
Darm_acle.h142 __clz(uint32_t __t) { in __clz() function