Searched defs:fInsertionIndexInBlock (Results 1 - 1 of 1) sorted by relevance

/external/skia/src/gpu/
H A DGrAllocator.h34 , fInsertionIndexInBlock(0) {
39 fInsertionIndexInBlock = fItemsPerBlock;
42 fInsertionIndexInBlock = 0;
53 if (fItemsPerBlock == fInsertionIndexInBlock) {
55 fInsertionIndexInBlock = 0;
57 void* ret = (char*)fBlocks.back() + fItemSize * fInsertionIndexInBlock;
59 ++fInsertionIndexInBlock;
68 SkASSERT(fInsertionIndexInBlock > 0);
69 --fInsertionIndexInBlock;
71 if (0 == fInsertionIndexInBlock) {
222 int fInsertionIndexInBlock; member in class:GrAllocator
[all...]

Completed in 234 milliseconds