Searched refs:GetSizeMask (Results 1 – 2 of 2) sorted by relevance
90 entry.data = MakeData(i, hash, GetSizeMask()); in TypeLookupTable()104 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()
45 uint32_t pos = hash & GetSizeMask(); in Lookup()56 pos = (pos + entry->next_pos_delta) & GetSizeMask(); in Lookup()135 uint32_t mask = static_cast<uint16_t>(~GetSizeMask()); in CmpHashBits()143 uint32_t GetSizeMask() const { in GetSizeMask() function