Searched refs:FreeLists (Results 1 – 2 of 2) sorted by relevance
45 FreeLists.resize(InlineFreeListsCapacity); in AttributeFactory()58 if (index < FreeLists.size()) { in allocate()59 if (AttributeList *attr = FreeLists[index]) { in allocate()60 FreeLists[index] = attr->NextInPool; in allocate()80 if (freeListIndex >= FreeLists.size()) in reclaimPool()81 FreeLists.resize(freeListIndex+1); in reclaimPool()84 cur->NextInPool = FreeLists[freeListIndex]; in reclaimPool()85 FreeLists[freeListIndex] = cur; in reclaimPool()
561 SmallVector<AttributeList*, InlineFreeListsCapacity> FreeLists; variable