Lines Matching refs:__first_
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()
178 …_LIBCPP_ASSERT_NON_NULL(__first_ != nullptr, "deallocating a block that was not allocated with thi… in __do_deallocate()
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()
184 for (__chunk_footer* h = __first_; h->__next_ != nullptr; h = h->__next_) { in __do_deallocate()