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

/freebsd-10.2-release/contrib/llvm/lib/Support/
H A DFoldingSet.cpp225 FoldingSetImpl::FoldingSetImpl(unsigned Log2InitSize) { argument
226 assert(5 < Log2InitSize && Log2InitSize < 32 &&
228 NumBuckets = 1 << Log2InitSize;
/freebsd-10.2-release/contrib/llvm/include/llvm/ADT/
H A DFoldingSet.h126 explicit FoldingSetImpl(unsigned Log2InitSize = 6);
413 explicit FoldingSet(unsigned Log2InitSize = 6)
414 : FoldingSetImpl(Log2InitSize)
490 explicit ContextualFoldingSet(Ctx Context, unsigned Log2InitSize = 6)
491 : FoldingSetImpl(Log2InitSize), Context(Context)
581 explicit FoldingSetVector(unsigned Log2InitSize = 6)
582 : Set(Log2InitSize) {

Completed in 112 milliseconds