Lines Matching refs:blocks
210 freeBlock(i->second.blocks[j]); in ~VtableFactory()
212 delete[] i->second.blocks; in ~VtableFactory()
225 GuardedBlocks blocks(*this); in getVtables() local
226 createVtables(blocks, BaseOffset(type), type, true); in getVtables()
228 OSL_ASSERT(blocks.size() <= SAL_MAX_INT32); in getVtables()
229 vtables.count = static_cast< sal_Int32 >(blocks.size()); in getVtables()
232 vtables.blocks = guardedBlocks.get(); in getVtables()
234 vtables.blocks[j] = blocks[j]; in getVtables()
238 blocks.unguard(); in getVtables()
334 GuardedBlocks & blocks, BaseOffset const & baseOffset, in createVtables() argument
349 sal_Int32 vtableOffset = blocks.size() * sizeof (Slot *); in createVtables()
369 blocks.push_back(block); in createVtables()
376 createVtables(blocks, baseOffset, type->ppBaseTypes[i], i != 0); in createVtables()