HomeSort by relevance Sort by last modified time
    Searched full:allocatebuckets (Results 1 - 4 of 4) 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 600 if (allocateBuckets(other.NumBuckets)) {
609 if (allocateBuckets(InitBuckets)) {
621 allocateBuckets(std::max<unsigned>(64, static_cast<unsigned>(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) {
    [all...]
  /external/llvm/lib/Support/
FoldingSet.cpp 214 /// AllocateBuckets - Allocated initialized bucket memory.
215 static void **AllocateBuckets(unsigned NumBuckets) {
229 Buckets = AllocateBuckets(NumBuckets);
254 Buckets = AllocateBuckets(NumBuckets);
  /system/core/include/utils/
BasicHashtable.h 100 void* allocateBuckets(size_t count) const;

Completed in 312 milliseconds