Searched refs:hash_code_seed (Results 1 – 2 of 2) sorted by relevance
44 Atomic<uint32_t> Object::hash_code_seed(987654321U + std::time(nullptr));173 expected_value = hash_code_seed.load(std::memory_order_relaxed); in GenerateIdentityHashCode()175 } while (!hash_code_seed.CompareAndSetWeakRelaxed(expected_value, new_value) || in GenerateIdentityHashCode()181 hash_code_seed.store(new_seed, std::memory_order_relaxed); in SetHashCodeSeed()
771 static Atomic<uint32_t> hash_code_seed; variable