Lines Matching refs:__c

67     __split_buffer(__split_buffer&& __c)
69 __split_buffer(__split_buffer&& __c, const __alloc_rr& __a);
70 __split_buffer& operator=(__split_buffer&& __c)
150 void __move_assign_alloc(__split_buffer& __c, true_type)
153 __alloc() = _VSTD::move(__c.__alloc());
344 __split_buffer<_Tp, _Allocator>::__split_buffer(__split_buffer&& __c)
346 : __first_(_VSTD::move(__c.__first_)),
347 __begin_(_VSTD::move(__c.__begin_)),
348 __end_(_VSTD::move(__c.__end_)),
349 __end_cap_(_VSTD::move(__c.__end_cap_))
351 __c.__first_ = nullptr;
352 __c.__begin_ = nullptr;
353 __c.__end_ = nullptr;
354 __c.__end_cap() = nullptr;
358 __split_buffer<_Tp, _Allocator>::__split_buffer(__split_buffer&& __c, const __alloc_rr& __a)
361 if (__a == __c.__alloc())
363 __first_ = __c.__first_;
364 __begin_ = __c.__begin_;
365 __end_ = __c.__end_;
366 __end_cap() = __c.__end_cap();
367 __c.__first_ = nullptr;
368 __c.__begin_ = nullptr;
369 __c.__end_ = nullptr;
370 __c.__end_cap() = nullptr;
374 size_type __cap = __c.size();
379 __construct_at_end(_Ip(__c.begin()), _Ip(__c.end()));
385 __split_buffer<_Tp, _Allocator>::operator=(__split_buffer&& __c)
392 __first_ = __c.__first_;
393 __begin_ = __c.__begin_;
394 __end_ = __c.__end_;
395 __end_cap() = __c.__end_cap();
396 __move_assign_alloc(__c,
399 __c.__first_ = __c.__begin_ = __c.__end_ = __c.__end_cap() = nullptr;
476 size_type __c = max<size_type>(2 * static_cast<size_t>(__end_cap() - __first_), 1);
477 __split_buffer<value_type, __alloc_rr&> __t(__c, (__c + 3) / 4, __alloc());
507 size_type __c = max<size_type>(2 * static_cast<size_t>(__end_cap() - __first_), 1);
508 __split_buffer<value_type, __alloc_rr&> __t(__c, (__c + 3) / 4, __alloc());
540 size_type __c = max<size_type>(2 * static_cast<size_t>(__end_cap() - __first_), 1);
541 __split_buffer<value_type, __alloc_rr&> __t(__c, __c / 4, __alloc());
571 size_type __c = max<size_type>(2 * static_cast<size_t>(__end_cap() - __first_), 1);
572 __split_buffer<value_type, __alloc_rr&> __t(__c, __c / 4, __alloc());
604 size_type __c = max<size_type>(2 * static_cast<size_t>(__end_cap() - __first_), 1);
605 __split_buffer<value_type, __alloc_rr&> __t(__c, __c / 4, __alloc());