Home | History | Annotate | Download | only in zone

Lines Matching defs:front_

56       front_ = NewChunk(static_cast<uint32_t>(start_mode));
57 back_ = front_;
132 Chunk* front_ = nullptr;
212 return ForwardZoneChunkListIterator<T>(list->front_, 0);
288 return front_->items()[0];
305 front_ = NewChunk(static_cast<uint32_t>(StartMode::kSmall));
306 back_ = front_;
335 chunk->next_ = front_;
336 if (front_) {
337 front_->previous_ = chunk;
341 front_ = chunk;
352 Chunk* current = front_;
399 for (Chunk* current = front_; current != nullptr; current = current->next_) {