Lines Matching defs:chunk_
42 explicit ChunkAllocator(Chunk *chunk) : chunk_(chunk) {}
45 explicit ChunkAllocator(const ChunkAllocator<U> &other) : chunk_(other.chunk_)
55 chunk_ = other.chunk_;
56 other.chunk_ = nullptr;
60 chunk_ = other.chunk_;
61 other.chunk_ = nullptr;
87 return chunk_->NewArray<T>(n);
109 return chunk_ == other.chunk_;
113 return chunk_ != other.chunk_;
118 return chunk_->NewArray<uint8_t>(size);
123 return chunk_->NewArray<T>(size);
143 return chunk_;
147 Chunk *chunk_;