Searched refs:objSize (Results 1 – 1 of 1) sorted by relevance
230 static void growingListAdd(GrowingList* pList, size_t objSize) { in growingListAdd() argument232 size_t oldsize = pList->alloc * objSize; in growingListAdd()233 pList->alloc += PAGESIZE / objSize; in growingListAdd()234 size_t size = pList->alloc * objSize; in growingListAdd()