Lines Matching refs:fItemsPerBlock
33 , fItemsPerBlock(itemsPerBlock) in GrAllocator()
38 fBlockSize = fItemSize * fItemsPerBlock; in GrAllocator()
41 fInsertionIndexInBlock = fItemsPerBlock; in GrAllocator()
55 if (fItemsPerBlock == fInsertionIndexInBlock) { in push_back()
78 fInsertionIndexInBlock = fItemsPerBlock; in pop_back()
94 fInsertionIndexInBlock = fItemsPerBlock; in reset()
162 , fIndexInBlock(allocator->fItemsPerBlock - 1) in Iter()
171 if (fIndexInBlock == fAllocator->fItemsPerBlock) { in next()
199 return (char*)fBlocks[i / fItemsPerBlock] +
200 fItemSize * (i % fItemsPerBlock);
208 return (const char*)fBlocks[i / fItemsPerBlock] +
209 fItemSize * (i % fItemsPerBlock);
224 SkASSERT(fItemsPerBlock == fInsertionIndexInBlock); in setInitialBlock()
239 int fItemsPerBlock; variable