Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DAttributeList.cpp45 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()
/external/clang/include/clang/Sema/
DAttributeList.h561 SmallVector<AttributeList*, InlineFreeListsCapacity> FreeLists; variable