Home
last modified time | relevance | path

Searched refs:bucket_index (Results 1 – 2 of 2) sorted by relevance

/frameworks/rs/
DrsMap.h91 while (++bucket_index < MAP_NUM_BUCKET) {
92 next = map->bucket[bucket_index];
104 return node == other.node && bucket_index == other.bucket_index &&
109 return node != other.node || bucket_index != other.bucket_index ||
118 iterator(size_t index, LinkNode* n, const Map* m) : bucket_index(index), node(n), map(m) {} in iterator()
121 size_t bucket_index;
/frameworks/base/libs/androidfw/include/androidfw/
DByteBucketArray.h54 uint8_t bucket_index = static_cast<uint8_t>(index) >> 4; variable
55 T* bucket = buckets_[bucket_index];
66 uint8_t bucket_index = static_cast<uint8_t>(index) >> 4; in editItemAt() local
67 T* bucket = buckets_[bucket_index]; in editItemAt()
69 bucket = buckets_[bucket_index] = new T[kBucketSize](); in editItemAt()