Home | History | Annotate | Download | only in Support

Lines Matching refs:Chunk

25 /** \class Chunk
26 * \brief Chunk is the basic unit of the storage of the LinearAllocator
31 struct Chunk
36 Chunk()
43 Chunk* next;
49 struct Chunk<DataType, 0>
55 Chunk()
63 ~Chunk() {
72 Chunk* next;
79 size_t Chunk<DataType, 0>::m_Size = 0;
137 // - Disallow to allocate a chunk whose size is bigger than a chunk.
195 /// isIn - whether the pPtr is in the current chunk?
276 * template argument ChunkSize is the number of bytes of a chunk
279 class LinearAllocator : public LinearAllocatorBase<Chunk<DataType, ChunkSize> >
289 : LinearAllocatorBase<Chunk<DataType, ChunkSize> >() {
297 class LinearAllocator<DataType, 0> : public LinearAllocatorBase<Chunk<DataType, 0> >
307 : LinearAllocatorBase<Chunk<DataType, 0> >() {
308 Chunk<DataType, 0>::setSize(pNum);