Lines Matching refs:__first_
168 __storage_type __first_[_N_words];
181 …{return reference(__first_ + __pos / __bits_per_word, __storage_type(1) << __pos % __bits_per_word…
183 …{return const_reference(__first_ + __pos / __bits_per_word, __storage_type(1) << __pos % __bits_pe…
185 {return iterator(__first_ + __pos / __bits_per_word, __pos % __bits_per_word);}
187 {return const_iterator(__first_ + __pos / __bits_per_word, __pos % __bits_per_word);}
228 : __first_{0}
232 _VSTD::fill_n(__first_, _N_words, __storage_type(0));
250 _VSTD::copy(__t, __t + sizeof(__t)/sizeof(__t[0]), __first_);
251 …_VSTD::fill(__first_ + sizeof(__t)/sizeof(__t[0]), __first_ + sizeof(__first_)/sizeof(__first_[0]),
260 __first_[0] = __v;
262 __first_[0] &= ( 1ULL << _Size ) - 1;
264 _VSTD::fill(__first_ + 1, __first_ + sizeof(__first_)/sizeof(__first_[0]), __storage_type(0));
275 : __first_{__v}
277 : __first_{static_cast<__storage_type>(__v),
296 __first_[__i] &= __v.__first_[__i];
305 __first_[__i] |= __v.__first_[__i];
314 __first_[__i] ^= __v.__first_[__i];
323 __storage_pointer __p = __first_;
345 return __first_[0];
353 return __first_[0];
381 return __first_[0];
388 unsigned long long __r = __first_[0];
390 … __r |= static_cast<unsigned long long>(__first_[__i]) << (sizeof(__storage_type) * CHAR_BIT);
400 __const_storage_pointer __p = __first_;
420 __const_storage_pointer __p = __first_;
441 __h ^= __first_[__i];
464 __storage_type __first_;
477 {return reference(&__first_, __storage_type(1) << __pos);}
479 {return const_reference(&__first_, __storage_type(1) << __pos);}
481 {return iterator(&__first_ + __pos / __bits_per_word, __pos % __bits_per_word);}
483 {return const_iterator(&__first_ + __pos / __bits_per_word, __pos % __bits_per_word);}
513 : __first_(0)
521 : __first_(
533 __first_ &= __v.__first_;
541 __first_ |= __v.__first_;
549 __first_ ^= __v.__first_;
558 __first_ = ~__first_;
559 __first_ &= __m;
567 return __first_;
575 return __first_;
584 return !(~__first_ & __m);
593 return __first_ & __m;
601 return __first_;