Lines Matching refs:ChunkAllocator
23 class ChunkAllocator {
36 using other = ChunkAllocator<U>;
42 explicit ChunkAllocator(Chunk *chunk) : chunk_(chunk) {}
45 explicit ChunkAllocator(const ChunkAllocator<U> &other) : chunk_(other.chunk_)
49 friend class ChunkAllocator;
51 ChunkAllocator(const ChunkAllocator &) = default;
52 ChunkAllocator &operator=(const ChunkAllocator &) = default;
53 ChunkAllocator(ChunkAllocator &&other) noexcept
58 ChunkAllocator &operator=(ChunkAllocator &&other) noexcept
64 ~ChunkAllocator() = default;
107 bool operator==(ChunkAllocator const &other) const
111 bool operator!=(ChunkAllocator const &other) const