Lines Matching refs:__i

239 …for (size_t __i = 0; __i < sizeof(__t)/sizeof(__t[0]); ++__i, __v >>= __bits_per_word, __sz -= __b…
241 __t[__i] = static_cast<__storage_type>(__v) & ( 1ULL << __sz ) - 1;
243 __t[__i] = static_cast<__storage_type>(__v);
290 for (size_type __i = 0; __i < _N_words; ++__i)
291 __first_[__i] &= __v.__first_[__i];
299 for (size_type __i = 0; __i < _N_words; ++__i)
300 __first_[__i] |= __v.__first_[__i];
308 for (size_type __i = 0; __i < _N_words; ++__i)
309 __first_[__i] ^= __v.__first_[__i];
336 const_iterator __i = _VSTD::find(__make_iter(sizeof(unsigned long) * CHAR_BIT), __e, true);
337 if (__i != __e)
356 const_iterator __i = _VSTD::find(__make_iter(sizeof(unsigned long long) * CHAR_BIT), __e, true);
357 if (__i != __e)
384 for (std::size_t __i = 1; __i < sizeof(unsigned long long) / sizeof(__storage_type); ++__i)
385 … __r |= static_cast<unsigned long long>(__first_[__i]) << (sizeof(__storage_type) * CHAR_BIT);
435 for (size_type __i = 0; __i < _N_words; ++__i)
436 __h ^= __first_[__i];
770 for (size_t __i = 0; __i < __rlen; ++__i)
771 if (__str[__i] != __zero && __str[__i] != __one)
775 size_t __i = 0;
776 for (; __i < _Mp; ++__i)
778 _CharT __c = __str[_Mp - 1 - __i];
780 (*this)[__i] = false;
782 (*this)[__i] = true;
784 _VSTD::fill(base::__make_iter(__i), base::__make_iter(_Size), false);
798 for (size_t __i = __pos; __i < __pos + __rlen; ++__i)
799 if (!_Traits::eq(__str[__i], __zero) && !_Traits::eq(__str[__i], __one))
803 size_t __i = 0;
804 for (; __i < _Mp; ++__i)
806 _CharT __c = __str[__pos + _Mp - 1 - __i];
808 (*this)[__i] = false;
810 (*this)[__i] = true;
812 _VSTD::fill(base::__make_iter(__i), base::__make_iter(_Size), false);
955 for (size_t __i = 0; __i < _Size; ++__i)
957 if ((*this)[__i])
958 __r[_Size - 1 - __i] = __one;