Lines Matching refs:__first_

57     pointer                                         __first_;
98 …LINE_VISIBILITY size_type capacity() const {return static_cast<size_type>(__end_cap() - __first_);}
99 …NE_VISIBILITY size_type __front_spare() const {return static_cast<size_type>(__begin_ - __first_);}
180 if (__first_ == nullptr)
191 if (__begin_ < __first_)
245 size_type __old_cap = __end_cap() - __first_;
314 __first_ = nullptr;
317 __first_ = __allocation.ptr;
320 __begin_ = __end_ = __first_ + __start;
321 __end_cap() = __first_ + __cap;
329 … : __first_(nullptr), __begin_(nullptr), __end_(nullptr), __end_cap_(nullptr, __default_init_tag())
337 : __first_(nullptr), __begin_(nullptr), __end_(nullptr), __end_cap_(nullptr, __a)
345 : __first_(nullptr), __begin_(nullptr), __end_(nullptr), __end_cap_(nullptr, __a)
354 if (__first_)
355 __alloc_traits::deallocate(__alloc(), __first_, capacity());
362 : __first_(_VSTD::move(__c.__first_)),
367 __c.__first_ = nullptr;
380 __first_ = __c.__first_;
384 __c.__first_ = nullptr;
392 __first_ = __allocation.ptr;
393 __begin_ = __end_ = __first_;
394 __end_cap() = __first_ + __allocation.count;
410 __first_ = __c.__first_;
417 __c.__first_ = __c.__begin_ = __c.__end_ = __c.__end_cap() = nullptr;
428 _VSTD::swap(__first_, __x.__first_);
445 _VSTD::swap(__first_, __t.__first_);
467 _VSTD::swap(__first_, __t.__first_);
485 if (__begin_ == __first_)
496 size_type __c = max<size_type>(2 * static_cast<size_t>(__end_cap() - __first_), 1);
500 _VSTD::swap(__first_, __t.__first_);
515 if (__begin_ == __first_)
526 size_type __c = max<size_type>(2 * static_cast<size_t>(__end_cap() - __first_), 1);
530 _VSTD::swap(__first_, __t.__first_);
549 if (__begin_ > __first_)
551 difference_type __d = __begin_ - __first_;
558 size_type __c = max<size_type>(2 * static_cast<size_t>(__end_cap() - __first_), 1);
562 _VSTD::swap(__first_, __t.__first_);
579 if (__begin_ > __first_)
581 difference_type __d = __begin_ - __first_;
588 size_type __c = max<size_type>(2 * static_cast<size_t>(__end_cap() - __first_), 1);
592 _VSTD::swap(__first_, __t.__first_);
611 if (__begin_ > __first_)
613 difference_type __d = __begin_ - __first_;
620 size_type __c = max<size_type>(2 * static_cast<size_t>(__end_cap() - __first_), 1);
624 _VSTD::swap(__first_, __t.__first_);