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

  /frameworks/native/libs/utils/
BasicHashtable.cpp 53 void* newBuckets = allocateBuckets(mBucketCount);
150 mBuckets = allocateBuckets(mBucketCount);
209 newBuckets = allocateBuckets(newBucketCount);
241 void* BasicHashtableImpl::allocateBuckets(size_t count) const {
  /external/llvm/include/llvm/ADT/
DenseMap.h 600 if (allocateBuckets(other.NumBuckets)) {
609 if (allocateBuckets(InitBuckets)) {
621 allocateBuckets(std::max<unsigned>(64, NextPowerOf2(AtLeast-1)));
674 bool allocateBuckets(unsigned Num) {
832 allocateBuckets(other.getNumBuckets());
841 new (getLargeRep()) LargeRep(allocateBuckets(InitBuckets));
879 new (getLargeRep()) LargeRep(allocateBuckets(AtLeast));
889 new (getLargeRep()) LargeRep(allocateBuckets(AtLeast));
975 LargeRep allocateBuckets(unsigned Num) {

Completed in 157 milliseconds