Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DFoldingSet.cpp195 static FoldingSetBase::Node *GetNextPtr(void *NextInBucketPtr) { in GetNextPtr()
200 return static_cast<FoldingSetBase::Node*>(NextInBucketPtr); in GetNextPtr()
231 FoldingSetBase::FoldingSetBase(unsigned Log2InitSize) { in FoldingSetBase() function in FoldingSetBase
239 FoldingSetBase::FoldingSetBase(FoldingSetBase &&Arg) in FoldingSetBase() function in FoldingSetBase
246 FoldingSetBase &FoldingSetBase::operator=(FoldingSetBase &&RHS) { in operator =()
257 FoldingSetBase::~FoldingSetBase() { in ~FoldingSetBase()
261 void FoldingSetBase::clear() { in clear()
272 void FoldingSetBase::GrowBucketCount(unsigned NewBucketCount, in GrowBucketCount()
310 void FoldingSetBase::GrowHashTable(const FoldingSetInfo &Info) { in GrowHashTable()
314 void FoldingSetBase::reserve(unsigned EltCount, const FoldingSetInfo &Info) { in reserve()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DFoldingSet.h112 class FoldingSetBase {
124 explicit FoldingSetBase(unsigned Log2InitSize = 6);
125 FoldingSetBase(FoldingSetBase &&Arg);
126 FoldingSetBase &operator=(FoldingSetBase &&RHS);
127 ~FoldingSetBase();
170 void (*GetNodeProfile)(const FoldingSetBase *Self, Node *N,
175 bool (*NodeEquals)(const FoldingSetBase *Self, Node *N,
181 unsigned (*ComputeNodeHash)(const FoldingSetBase *Self, Node *N,
366 using FoldingSetNode = FoldingSetBase::Node;
408 template <class Derived, class T> class FoldingSetImpl : public FoldingSetBase {
[all …]