OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mBucketCount
(Results
1 - 2
of
2
) sorted by null
/system/core/libutils/
BasicHashtable.cpp
32
determineCapacity(minimumInitialCapacity, mLoadFactor, &
mBucketCount
, &mCapacity);
39
mBucketCount
(other.
mBucketCount
), mBuckets(other.mBuckets) {
51
releaseBuckets(mBuckets,
mBucketCount
);
57
void* newBuckets = allocateBuckets(
mBucketCount
);
58
copyBuckets(mBuckets, newBuckets,
mBucketCount
);
59
releaseBuckets(mBuckets,
mBucketCount
);
66
releaseBuckets(mBuckets,
mBucketCount
);
73
mBucketCount
= other.
mBucketCount
;
[
all
...]
/system/core/include/utils/
BasicHashtable.h
80
size_t
mBucketCount
; // number of slots in the mBuckets array
219
return
mBucketCount
;
Completed in 76 milliseconds