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

/external/chromium_org/third_party/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/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...]

Completed in 48 milliseconds