HomeSort by: relevance | last modified time | path
    Searched defs:allocateBuckets (Results 1 - 2 of 2) sorted by relevancy

  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_dense_map.h 626 if (allocateBuckets(other.NumBuckets)) {
636 if (allocateBuckets(InitBuckets)) {
648 allocateBuckets(RoundUpToPowerOfTwo(Max<unsigned>(64, AtLeast)));
674 bool allocateBuckets(unsigned Num) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
DenseMap.h 784 if (allocateBuckets(other.NumBuckets)) {
794 if (allocateBuckets(InitBuckets)) {
806 allocateBuckets(std::max<unsigned>(64, static_cast<unsigned>(NextPowerOf2(AtLeast-1))));
864 bool allocateBuckets(unsigned Num) {
1024 new (getLargeRep()) LargeRep(allocateBuckets(other.getNumBuckets()));
1033 new (getLargeRep()) LargeRep(allocateBuckets(InitBuckets));
1070 new (getLargeRep()) LargeRep(allocateBuckets(AtLeast));
1081 new (getLargeRep()) LargeRep(allocateBuckets(AtLeast));
1178 LargeRep allocateBuckets(unsigned Num) {

Completed in 27 milliseconds