Lines Matching refs:temp
85 Iterator temp = *this; variable
87 return temp;
152 uint64_t temp; in HashSet() local
154 offset = ReadFromBytes(ptr, offset, &temp); in HashSet()
155 num_elements_ = static_cast<uint64_t>(temp); in HashSet()
156 offset = ReadFromBytes(ptr, offset, &temp); in HashSet()
157 num_buckets_ = static_cast<uint64_t>(temp); in HashSet()
159 offset = ReadFromBytes(ptr, offset, &temp); in HashSet()
160 elements_until_expand_ = static_cast<uint64_t>(temp); in HashSet()
374 T temp; in Verify() local
375 emptyfn_.MakeEmpty(temp); in Verify()
376 std::swap(temp, element); in Verify()
377 size_t first_slot = FirstAvailableSlot(IndexForHash(hashfn_(temp))); in Verify()
382 std::swap(temp, element); in Verify()