Searched refs:hash_code_seed (Results 1 – 2 of 2) sorted by relevance
43 Atomic<uint32_t> Object::hash_code_seed(987654321U + std::time(nullptr));175 expected_value = hash_code_seed.LoadRelaxed(); in GenerateIdentityHashCode()177 } while (!hash_code_seed.CompareExchangeWeakRelaxed(expected_value, new_value) || in GenerateIdentityHashCode()183 hash_code_seed.StoreRelaxed(new_seed); in SetHashCodeSeed()
707 static Atomic<uint32_t> hash_code_seed; variable