Searched defs:toBucket (Results 1 - 1 of 1) sorted by relevance

/frameworks/native/libs/utils/
H A DBasicHashtable.cpp215 Bucket* toBucket = &bucketAt(newBuckets, size_t(index)); local
216 if (toBucket->cookie & Bucket::PRESENT) {
219 toBucket->cookie |= Bucket::COLLISION;
221 toBucket = &bucketAt(newBuckets, size_t(index));
222 } while (toBucket->cookie & Bucket::PRESENT);
224 toBucket->cookie = Bucket::PRESENT | hash;
225 initializeBucketEntry(*toBucket, fromBucket.entry);
277 Bucket& toBucket = bucketAt(toBuckets, i); local
278 toBucket.cookie = fromBucket.cookie;
280 initializeBucketEntry(toBucket, fromBucke
[all...]

Completed in 33 milliseconds