Home
last modified time | relevance | path

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

/art/runtime/
Dtype_lookup_table.cc87 entry.data = MakeData(i, hash, GetSizeMask()); in TypeLookupTable()
101 entry.data = MakeData(class_def_idx, hash, GetSizeMask()); in TypeLookupTable()
116 const uint32_t pos = hash & GetSizeMask(); in SetOnInitialPos()
126 uint32_t pos = FindLastEntryInBucket(hash & GetSizeMask()); in Insert()
127 uint32_t next_pos = (pos + 1) & GetSizeMask(); in Insert()
129 next_pos = (next_pos + 1) & GetSizeMask(); in Insert()
140 pos = (pos + entry->next_pos_delta) & GetSizeMask(); in FindLastEntryInBucket()
Dtype_lookup_table.h47 uint32_t pos = hash & GetSizeMask(); in Lookup()
58 pos = (pos + entry->next_pos_delta) & GetSizeMask(); in Lookup()
141 uint32_t mask = static_cast<uint16_t>(~GetSizeMask()); in CmpHashBits()
149 uint32_t GetSizeMask() const { in GetSizeMask() function