Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DFoldingSet.cpp224 void FoldingSetBase::GrowBucketCount(unsigned NewBucketCount, in GrowBucketCount() argument
226 assert((NewBucketCount > NumBuckets) && in GrowBucketCount()
228 assert(isPowerOf2_32(NewBucketCount) && "Bad bucket count!"); in GrowBucketCount()
233 Buckets = AllocateBuckets(NewBucketCount); in GrowBucketCount()
235 NumBuckets = NewBucketCount; in GrowBucketCount()
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DFoldingSet.h195 void GrowBucketCount(unsigned NewBucketCount, const FoldingSetInfo &Info);