Home
last modified time | relevance | path

Searched refs:hash_code_seed (Results 1 – 2 of 2) sorted by relevance

/art/runtime/mirror/
Dobject.cc42 Atomic<uint32_t> Object::hash_code_seed(987654321U + std::time(nullptr));
142 expected_value = hash_code_seed.LoadRelaxed(); in GenerateIdentityHashCode()
144 } while (!hash_code_seed.CompareExchangeWeakRelaxed(expected_value, new_value) || in GenerateIdentityHashCode()
150 hash_code_seed.StoreRelaxed(new_seed); in SetHashCodeSeed()
Dobject.h512 static Atomic<uint32_t> hash_code_seed; variable