Searched refs:NewBucketCount (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/Support/
H A DFoldingSet.cpp269 void FoldingSetImpl::GrowBucketCount(unsigned NewBucketCount) { argument
270 assert((NewBucketCount > NumBuckets) && "Can't shrink a folding set with GrowBucketCount");
271 assert(isPowerOf2_32(NewBucketCount) && "Bad bucket count!");
274 NumBuckets = NewBucketCount;
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DFoldingSet.cpp269 void FoldingSetImpl::GrowBucketCount(unsigned NewBucketCount) { argument
270 assert((NewBucketCount > NumBuckets) && "Can't shrink a folding set with GrowBucketCount");
271 assert(isPowerOf2_32(NewBucketCount) && "Bad bucket count!");
274 NumBuckets = NewBucketCount;
/external/llvm/include/llvm/ADT/
H A DFoldingSet.h200 /// NewBucketCount must be a power of two, and must be greater than the old
202 void GrowBucketCount(unsigned NewBucketCount);
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DFoldingSet.h206 /// NewBucketCount must be a power of two, and must be greater than the old
208 void GrowBucketCount(unsigned NewBucketCount);

Completed in 553 milliseconds