Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DFoldingSet.h124 explicit FoldingSetBase(unsigned Log2InitSize = 6);
410 explicit FoldingSetImpl(unsigned Log2InitSize) in FoldingSetImpl() argument
411 : FoldingSetBase(Log2InitSize) {} in FoldingSetImpl()
530 explicit FoldingSet(unsigned Log2InitSize = 6) : Super(Log2InitSize) {} in Super() argument
592 explicit ContextualFoldingSet(Ctx Context, unsigned Log2InitSize = 6)
593 : Super(Log2InitSize), Context(Context) {} in Super() argument
609 explicit FoldingSetVector(unsigned Log2InitSize = 6) : Set(Log2InitSize) {} in Set() argument
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DFoldingSet.cpp231 FoldingSetBase::FoldingSetBase(unsigned Log2InitSize) { in FoldingSetBase() argument
232 assert(5 < Log2InitSize && Log2InitSize < 32 && in FoldingSetBase()
234 NumBuckets = 1 << Log2InitSize; in FoldingSetBase()