Searched defs:FoldingSetImpl (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Support/
H A DFoldingSet.cpp29 /// used to lookup the node in the FoldingSetImpl.
144 /// lookup the node in the FoldingSetImpl.
182 /// Helper functions for FoldingSetImpl.
190 static FoldingSetImpl::Node *GetNextPtr(void *NextInBucketPtr) {
195 return static_cast<FoldingSetImpl::Node*>(NextInBucketPtr);
223 // FoldingSetImpl Implementation
225 FoldingSetImpl::FoldingSetImpl(unsigned Log2InitSize) { function in class:FoldingSetImpl
232 FoldingSetImpl::~FoldingSetImpl() {
[all...]
/external/llvm/include/llvm/ADT/
H A DFoldingSet.h42 /// call one of the Add* functions defined in the FoldingSetImpl::NodeID class.
105 /// FoldingSetImpl - Implements the folding set functionality. The main
111 class FoldingSetImpl { class in namespace:llvm
126 explicit FoldingSetImpl(unsigned Log2InitSize = 6);
127 virtual ~FoldingSetImpl();
276 /// used to lookup the node in the FoldingSetImpl.
328 /// to lookup the node in the FoldingSetImpl.
351 typedef FoldingSetImpl::Node FoldingSetNode;
395 template<class T> class FoldingSet : public FoldingSetImpl {
419 : FoldingSetImpl(Log2InitSiz
[all...]

Completed in 373 milliseconds