Searched refs:mBuckets (Results 1 - 3 of 3) sorted by relevance

/frameworks/native/libs/utils/
H A DBasicHashtable.cpp31 mFilledBuckets(0), mBuckets(NULL) {
39 mBucketCount(other.mBucketCount), mBuckets(other.mBuckets) {
40 if (mBuckets) {
41 SharedBuffer::bufferFromData(mBuckets)->acquire();
46 if (mBuckets) {
47 releaseBuckets(mBuckets, mBucketCount);
52 if (mBuckets) {
54 copyBuckets(mBuckets, newBuckets, mBucketCount);
55 releaseBuckets(mBuckets, mBucketCoun
[all...]
/frameworks/native/include/utils/
H A DBasicHashtable.h59 if (mBuckets && !SharedBuffer::bufferFromData(mBuckets)->onlyOwner()) {
79 size_t mBucketCount; // number of slots in the mBuckets array
80 void* mBuckets; // array of buckets, as a SharedBuffer member in class:android::BasicHashtableImpl
232 return entryFor(bucketAt(mBuckets, index));
242 return entryFor(bucketAt(mBuckets, index));
348 return bucketAt(mBuckets, index).cookie;
/frameworks/native/libs/utils/tests/
H A DBasicHashtable_test.cpp117 return h.mBuckets;

Completed in 58 milliseconds