Lines Matching refs:temp
70 HashSetIterator temp = *this; variable
72 return temp;
260 uint64_t temp; in HashSet() local
262 offset = ReadFromBytes(ptr, offset, &temp); in HashSet()
263 num_elements_ = static_cast<uint64_t>(temp); in HashSet()
264 offset = ReadFromBytes(ptr, offset, &temp); in HashSet()
265 num_buckets_ = static_cast<uint64_t>(temp); in HashSet()
267 offset = ReadFromBytes(ptr, offset, &temp); in HashSet()
268 elements_until_expand_ = static_cast<uint64_t>(temp); in HashSet()
533 T temp; in Verify() local
534 emptyfn_.MakeEmpty(temp); in Verify()
535 std::swap(temp, element); in Verify()
536 size_t first_slot = FirstAvailableSlot(IndexForHash(hashfn_(temp))); in Verify()
541 std::swap(temp, element); in Verify()