Searched refs:itemsPerBlock (Results 1 - 1 of 1) sorted by relevance

/external/skia/src/gpu/
H A DGrAllocator.h27 * @param itemsPerBlock the number of items to allocate at once
29 * Must be at least itemSize*itemsPerBlock sized.
32 GrAllocator(size_t itemSize, int itemsPerBlock, void* initialBlock) : argument
34 fItemsPerBlock(itemsPerBlock),
37 GrAssert(itemsPerBlock > 0);
149 * @param itemsPerBlock the number of items to allocate at once
151 * Must be at least size(T)*itemsPerBlock sized.
154 explicit GrTAllocator(int itemsPerBlock) argument
155 : fAllocator(sizeof(T), itemsPerBlock, NULL) {}
228 GrTAllocator(int itemsPerBlock, voi argument
[all...]

Completed in 110 milliseconds