HomeSort by relevance Sort by last modified time
    Searched refs:allocateBuckets (Results 1 - 3 of 3) sorted by null

  /system/core/libutils/
BasicHashtable.cpp 57 void* newBuckets = allocateBuckets(mBucketCount);
154 mBuckets = allocateBuckets(mBucketCount);
213 newBuckets = allocateBuckets(newBucketCount);
245 void* BasicHashtableImpl::allocateBuckets(size_t count) const {
  /external/llvm/include/llvm/ADT/
DenseMap.h 592 if (allocateBuckets(other.NumBuckets)) {
601 if (allocateBuckets(InitBuckets)) {
613 allocateBuckets(std::max<unsigned>(64, static_cast<unsigned>(NextPowerOf2(AtLeast-1))));
666 bool allocateBuckets(unsigned Num) {
820 new (getLargeRep()) LargeRep(allocateBuckets(other.getNumBuckets()));
829 new (getLargeRep()) LargeRep(allocateBuckets(InitBuckets));
867 new (getLargeRep()) LargeRep(allocateBuckets(AtLeast));
877 new (getLargeRep()) LargeRep(allocateBuckets(AtLeast));
963 LargeRep allocateBuckets(unsigned Num) {
  /system/core/include/utils/
BasicHashtable.h 100 void* allocateBuckets(size_t count) const;

Completed in 906 milliseconds