Searched refs:Log2InitSize (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Support/
H A DFoldingSet.cpp225 FoldingSetImpl::FoldingSetImpl(unsigned Log2InitSize) { argument
226 assert(5 < Log2InitSize && Log2InitSize < 32 &&
228 NumBuckets = 1 << Log2InitSize;
/external/llvm/include/llvm/ADT/
H A DFoldingSet.h126 explicit FoldingSetImpl(unsigned Log2InitSize = 6);
418 explicit FoldingSet(unsigned Log2InitSize = 6)
419 : FoldingSetImpl(Log2InitSize)
494 explicit ContextualFoldingSet(Ctx Context, unsigned Log2InitSize = 6)
495 : FoldingSetImpl(Log2InitSize), Context(Context)
585 explicit FoldingSetVector(unsigned Log2InitSize = 6)
586 : Set(Log2InitSize) {

Completed in 447 milliseconds