Lines Matching refs:allocator
21 * Create an allocator
131 * Iterates through the allocator. This is faster than using operator[] when walking linearly
132 * through the allocator.
139 Iter(const GrAllocator* allocator)
140 : fAllocator(allocator)
142 , fIndexInBlock(allocator->fItemsPerBlock - 1)
235 * Create an allocator
314 * Iterates through the allocator. This is faster than using operator[] when walking linearly
315 * through the allocator.
322 Iter(const GrTAllocator* allocator) : fImpl(&allocator->fAllocator) {}
391 template <typename T> void* operator new(size_t size, GrTAllocator<T>* allocator) {
392 return allocator->fAllocator.push_back();