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.cpp53 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()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DParsedAttr.h671 SmallVector<SmallVector<ParsedAttr *, 8>, InlineFreeListsCapacity> FreeLists; variable