Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/libcxx/include/
H A D__bit_reference47 using __storage_type = typename _Cp::__storage_type;
139 using __storage_type = typename _Cp::__storage_type;
180 using __storage_type = typename _It::__storage_type;
236 using __storage_type = typename _In::__storage_type;
279 using __storage_type = typename _In::__storage_type;
360 using __storage_type = typename _In::__storage_type;
402 using __storage_type = typename _In::__storage_type;
441 __storage_type __m = ~__storage_type(0) >> __clz_r;
504 using __storage_type = typename _I1::__storage_type;
550 using __storage_type = typename _I1::__storage_type;
[all …]
H A Dbitset172 typedef size_type __storage_type;
186 __storage_type __first_[_N_words];
253 __storage_type __t[sizeof(unsigned long long) / sizeof(__storage_type)];
328 __storage_type __m = ~__storage_type(0) >> (__bits_per_word - __n);
394 __storage_type __m = ~__storage_type(0) >> (__bits_per_word - __n);
411 __storage_type __m = ~__storage_type(0) >> (__bits_per_word - __n);
431 typedef size_type __storage_type;
445 __storage_type __first_;
511 __storage_type __m = ~__storage_type(0) >> (__bits_per_word - _Size);
528 __storage_type __m = ~__storage_type(0) >> (__bits_per_word - _Size);
[all …]
H A Dvector1821 typedef size_type __storage_type;
1830 typedef __rebind_alloc<__alloc_traits, __storage_type> __storage_allocator;
1859 static const unsigned __bits_per_word = static_cast<unsigned>(sizeof(__storage_type) * CHAR_BIT);
2206 __begin_ + __pos / __bits_per_word, __storage_type(1) << __pos % __bits_per_word);
2299 this->__begin_[0] = __storage_type(0);
2301 this->__begin_[(this->__size_ - 1) / __bits_per_word] = __storage_type(0);
2314 this->__begin_[0] = __storage_type(0);
2316 this->__begin_[(this->__size_ - 1) / __bits_per_word] = __storage_type(0);
2813 __storage_type __m = ~__storage_type(0) >> (__bits_per_word - __n);
2814 __storage_type __b = *__p & __m;
[all …]
/freebsd-14.2/contrib/llvm-project/libcxx/include/__algorithm/
H A Dcount.h48 using __storage_type = typename _It::__storage_type; in __count_bool() local
55 __storage_type __clz_f = static_cast<__storage_type>(__bits_per_word - __first.__ctz_); in __count_bool()
56 __storage_type __dn = std::min(__clz_f, __n); in __count_bool()
57__storage_type __m = (~__storage_type(0) << __first.__ctz_) & (~__storage_type(0) >> (__clz_f … in __count_bool()
67 __storage_type __m = ~__storage_type(0) >> (__bits_per_word - __n); in __count_bool()
H A Dfind.h103 using __storage_type = typename _It::__storage_type; in __find_bool() local
108 __storage_type __clz_f = static_cast<__storage_type>(__bits_per_word - __first.__ctz_); in __find_bool()
109 __storage_type __dn = std::min(__clz_f, __n); in __find_bool()
110__storage_type __m = (~__storage_type(0) << __first.__ctz_) & (~__storage_type(0) >> (__clz_f … in __find_bool()
111 __storage_type __b = std::__invert_if<!_ToFind>(*__first.__seg_) & __m; in __find_bool()
121 __storage_type __b = std::__invert_if<!_ToFind>(*__first.__seg_); in __find_bool()
127 __storage_type __m = ~__storage_type(0) >> (__bits_per_word - __n); in __find_bool()
128 __storage_type __b = std::__invert_if<!_ToFind>(*__first.__seg_) & __m; in __find_bool()
/freebsd-14.2/contrib/llvm-project/libcxx/include/__fwd/
H A Dbit_reference.h20 template <class _Cp, bool _IsConst, typename _Cp::__storage_type = 0>