Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/llvm/lib/Support/
H A DSmallPtrSet.cpp23 void SmallPtrSetImplBase::shrink_and_clear() { in shrink_and_clear()
38 SmallPtrSetImplBase::insert_imp(const void *Ptr) { in insert_imp()
76 bool SmallPtrSetImplBase::erase_imp(const void * Ptr) { in erase_imp()
103 const void * const *SmallPtrSetImplBase::FindBucketFor(const void *Ptr) const { in FindBucketFor()
132 void SmallPtrSetImplBase::Grow(unsigned NewSize) { in Grow()
168 SmallPtrSetImplBase::SmallPtrSetImplBase(const void **SmallStorage, in SmallPtrSetImplBase() function in SmallPtrSetImplBase
169 const SmallPtrSetImplBase& that) { in SmallPtrSetImplBase()
191 SmallPtrSetImplBase::SmallPtrSetImplBase(const void **SmallStorage, in SmallPtrSetImplBase() function in SmallPtrSetImplBase
193 SmallPtrSetImplBase &&that) { in SmallPtrSetImplBase()
220 void SmallPtrSetImplBase::CopyFrom(const SmallPtrSetImplBase &RHS) { in CopyFrom()
[all …]
/minix3/external/bsd/llvm/dist/llvm/include/llvm/ADT/
H A DSmallPtrSet.h49 class SmallPtrSetImplBase {
65 SmallPtrSetImplBase(const void **SmallStorage, const SmallPtrSetImplBase &that);
66 SmallPtrSetImplBase(const void **SmallStorage, unsigned SmallSize,
67 SmallPtrSetImplBase &&that);
68 explicit SmallPtrSetImplBase(const void **SmallStorage, unsigned SmallSize) : in SmallPtrSetImplBase() function
74 ~SmallPtrSetImplBase();
135 void operator=(const SmallPtrSetImplBase &RHS) LLVM_DELETED_FUNCTION;
139 void swap(SmallPtrSetImplBase &RHS);
141 void CopyFrom(const SmallPtrSetImplBase &RHS);
142 void MoveFrom(unsigned SmallSize, SmallPtrSetImplBase &&RHS);
[all …]