Home | History | Annotate | Download | only in ADT

Lines Matching defs:key

53     assert(!isEqual(Val, getEmptyKey()) && "Cannot hash the empty key!");
55 "Cannot hash the tombstone key!");
181 uint64_t key = (uint64_t)FirstInfo::getHashValue(PairVal.first) << 32
183 key += ~(key << 32);
184 key ^= (key >> 22);
185 key += ~(key << 13);
186 key ^= (key >> 8);
187 key += (key << 3);
188 key ^= (key >> 15);
189 key += ~(key << 27);
190 key ^= (key >> 31);
191 return (unsigned)key;
210 assert(Val.data() != getEmptyKey().data() && "Cannot hash the empty key!");
212 "Cannot hash the tombstone key!");
235 assert(Val.data() != getEmptyKey().data() && "Cannot hash the empty key!");
237 "Cannot hash the tombstone key!");