| /freebsd-14.2/contrib/llvm-project/libcxx/include/__format/ |
| H A D | unicode.h | 128 : __first_(__first), __last_(__last) {} in __code_point_view() 166 if (__last_ - __first_ < 2 || !__unicode::__is_continuation(__first_ + 1, 1)) [[unlikely]] in __consume() 181 if (__last_ - __first_ < 3 || !__unicode::__is_continuation(__first_ + 1, 2)) [[unlikely]] in __consume() 202 if (__last_ - __first_ < 4 || !__unicode::__is_continuation(__first_ + 1, 3)) [[unlikely]] in __consume() 227 ++__first_; in __consume() 232 _Iterator __first_; 256 : __first_(__first), __last_(__last) {} in __code_point_view() 270 …if (__first_ == __last_ || !__unicode::__is_low_surrogate(static_cast<char32_t>(*__first_))) [[unl… in __consume() 290 _Iterator __first_; 456 : __first_(__first), __last_(__last) {} in __code_point_view() [all …]
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/ |
| H A D | __split_buffer | 361 : __first_(std::move(__c.__first_)), 376 __first_ = __c.__first_; 402 __first_ = __c.__first_; 414 std::swap(__first_, __x.__first_); 426 std::swap(__first_, __t.__first_); 442 std::swap(__first_, __t.__first_); 465 std::swap(__first_, __t.__first_); 487 std::swap(__first_, __t.__first_); 510 std::swap(__first_, __t.__first_); 532 std::swap(__first_, __t.__first_); [all …]
|
| H A D | bitset | 241 : __first_{0} 263 …__first_ + sizeof(__t) / sizeof(__t[0]), __first_ + sizeof(__first_) / sizeof(__first_[0]), __stor… 272 std::fill(__first_ + 1, __first_ + sizeof(__first_) / sizeof(__first_[0]), __storage_type(0)); 302 __first_[__i] &= __v.__first_[__i]; 309 __first_[__i] |= __v.__first_[__i]; 316 __first_[__i] ^= __v.__first_[__i]; 494 __first_ &= __v.__first_; 500 __first_ |= __v.__first_; 506 __first_ ^= __v.__first_; 512 __first_ = ~__first_; [all …]
|
| H A D | iomanip | 459 const _CharT* __first_; 465 : __first_(__f), __last_(__l), __delim_(__d), __escape_(__e) {} 470 return std::__quoted_output(__os, __p.__first_, __p.__last_, __p.__delim_, __p.__escape_);
|
| H A D | regex | 1326 const _CharT* __first_; 1337 __first_(nullptr), 1386 __node<_CharT>* __first_; 1392 _LIBCPP_HIDE_FROM_ABI __node<_CharT>*& first() { return __first_; } 1806 if (__s.__first_ != __s.__last_) { 2725 __s.__at_first_ && __s.__current_ == __s.__first_); 4854 __states.back().__first_ = __first; 4924 __states.back().__first_ = __first; 4952 __highest_j = __s.__current_ - __s.__first_; 5013 __states.back().__first_ = __first; [all …]
|
| H A D | deque | 2046 std::swap(__map_.__first_, __buf.__first_); 2123 std::swap(__map_.__first_, __buf.__first_); 2169 std::swap(__map_.__first_, __buf.__first_); 2248 std::swap(__map_.__first_, __buf.__first_);
|
| H A D | vector | 996 __v.__first_ = __v.__begin_; 1013 __v.__first_ = __v.__begin_;
|
| /freebsd-14.2/contrib/llvm-project/libcxx/src/ |
| H A D | memory_resource.cpp | 150 while (__first_ != nullptr) { in __release_ptr() 151 __chunk_footer* next = __first_->__next_; in __release_ptr() 152 upstream->deallocate(__first_->__start_, __first_->__allocation_size(), __first_->__align_); in __release_ptr() 153 __first_ = next; in __release_ptr() 169 h->__next_ = __first_; in __do_allocate() 172 __first_ = h; in __do_allocate() 179 if (__first_->__start_ == p) { in __do_deallocate() 180 __chunk_footer* next = __first_->__next_; in __do_deallocate() 181 upstream->deallocate(p, __first_->__allocation_size(), __first_->__align_); in __do_deallocate() 182 __first_ = next; in __do_deallocate() [all …]
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__functional/ |
| H A D | boyer_moore_searcher.h | 108 : __first_(__first), in __first_() function 121 __build_suffix_table(__first_, __last_, __pred_); in __first_() 132 if (__first_ == __last_) in operator() 141 _RandomAccessIterator1 __first_; 157 while (__pred_(__first_[__j - 1], __current[__j - 1])) { in __search() 239 : __first_(__first), in __first_() function 263 if (__first_ == __last_) in operator() 273 _RandomAccessIterator1 __first_; 288 while (__pred_(__first_[__j - 1], __current[__j - 1])) { in __search()
|
| H A D | default_searcher.h | 34 : __first_(__f), __last_(__l), __pred_(__p) {} in __first_() function 40 return std::__search_impl(__f, __l, __first_, __last_, __pred_, __proj, __proj); in operator() 44 _ForwardIterator __first_;
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/experimental/ |
| H A D | iterator | 87 : __output_iter_(std::addressof(__os)), __delim_(std::move(__d)), __first_(true) {} 90 : __output_iter_(std::addressof(__os)), __delim_(__d), __first_(true) {} 94 if (!__first_) 96 __first_ = false; 108 bool __first_;
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__memory_resource/ |
| H A D | unsynchronized_pool_resource.h | 36 __chunk_footer* __first_; variable 39 _LIBCPP_HIDE_FROM_ABI explicit __adhoc_pool() : __first_(nullptr) {} in __adhoc_pool()
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__memory/ |
| H A D | uninitialized_algorithms.h | 527 : __alloc_(__alloc), __first_(__first), __last_(__last) {} in _AllocatorDestroyRangeReverse() 530 …r_destroy(__alloc_, std::reverse_iterator<_Iter>(__last_), std::reverse_iterator<_Iter>(__first_)); in operator() 535 _Iter& __first_; variable
|