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
/frameworks/native/libs/utils/
BasicHashtable.cpp
32
determineCapacity(minimumInitialCapacity, mLoadFactor, &
mBucketCount
, &mCapacity);
39
mBucketCount
(other.
mBucketCount
), mBuckets(other.mBuckets) {
47
releaseBuckets(mBuckets,
mBucketCount
);
53
void* newBuckets = allocateBuckets(
mBucketCount
);
54
copyBuckets(mBuckets, newBuckets,
mBucketCount
);
55
releaseBuckets(mBuckets,
mBucketCount
);
62
releaseBuckets(mBuckets,
mBucketCount
);
69
mBucketCount
= other.
mBucketCount
;
[
all
...]
/frameworks/native/include/utils/
BasicHashtable.h
79
size_t
mBucketCount
; // number of slots in the mBuckets array
218
return
mBucketCount
;
Completed in 326 milliseconds