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

/external/skia/src/gpu/
H A DGrAllocator.h26 * @param itemsPerBlock the number of items to allocate at once
28 * Must be at least itemSize*itemsPerBlock sized.
31 GrAllocator(size_t itemSize, int itemsPerBlock, void* initialBlock) : argument
33 fItemsPerBlock(itemsPerBlock),
36 SkASSERT(itemsPerBlock > 0);
47 * Must be at least itemSize*itemsPerBlock sized.
163 * @param itemsPerBlock the number of items to allocate at once
165 explicit GrTAllocator(int itemsPerBlock) argument
166 : fAllocator(sizeof(T), itemsPerBlock, NULL) {}
243 * Must be at least size(T)*itemsPerBlock size
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrAllocator.h24 * @param itemsPerBlock the number of items to allocate at once
26 * Must be at least itemSize*itemsPerBlock sized.
29 GrAllocator(size_t itemSize, int itemsPerBlock, void* initialBlock) argument
31 , fItemsPerBlock(itemsPerBlock)
35 SkASSERT(itemsPerBlock > 0);
198 * Must be at least itemSize*itemsPerBlock sized.
237 * @param itemsPerBlock the number of items to allocate at once
239 explicit GrTAllocator(int itemsPerBlock) argument
240 : fAllocator(sizeof(T), itemsPerBlock, NULL) {}
357 * Must be at least size(T)*itemsPerBlock size
[all...]

Completed in 106 milliseconds