Searched refs:FreeLists (Results 1 – 2 of 2) sorted by relevance
53 FreeLists.resize(InlineFreeListsCapacity); in AttributeFactory()66 if (index < FreeLists.size() && !FreeLists[index].empty()) { in allocate()67 ParsedAttr *attr = FreeLists[index].back(); in allocate()68 FreeLists[index].pop_back(); in allocate()81 if (freeListIndex >= FreeLists.size()) in deallocate()82 FreeLists.resize(freeListIndex + 1); in deallocate()90 FreeLists[freeListIndex].push_back(Attr); in deallocate()
671 SmallVector<SmallVector<ParsedAttr *, 8>, InlineFreeListsCapacity> FreeLists; variable