Home
last modified time | relevance | path

Searched refs:FreeLists (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DParsedAttr.cpp43 FreeLists.resize(InlineFreeListsCapacity); in AttributeFactory()
56 if (index < FreeLists.size() && !FreeLists[index].empty()) { in allocate()
57 ParsedAttr *attr = FreeLists[index].pop_back_val(); in allocate()
70 if (freeListIndex >= FreeLists.size()) in deallocate()
71 FreeLists.resize(freeListIndex + 1); in deallocate()
79 FreeLists[freeListIndex].push_back(Attr); in deallocate()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DParsedAttr.h654 SmallVector<SmallVector<ParsedAttr *, 8>, InlineFreeListsCapacity> FreeLists; variable