Home
last modified time | relevance | path

Searched refs:RandomGenerator (Results 1 – 10 of 10) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/mem/
Dallocation_inspector.cpp41 double random = base::RandomGenerator::NextDouble(); in GetNextStepSize()
/arkcompiler/ets_runtime/ecmascript/base/
Dnumber_helper.cpp37 thread_local uint64_t RandomGenerator::randomState_ {0};
1202 uint64_t RandomGenerator::XorShift64(uint64_t *pVal) in XorShift64()
1212 void RandomGenerator::InitRandom() in InitRandom()
1223 double RandomGenerator::NextDouble() in NextDouble()
1229 double RandomGenerator::ToDouble(uint64_t state) in ToDouble()
1235 int32_t RandomGenerator::Next(int bits) in Next()
1241 int32_t RandomGenerator::GenerateIdentityHash() in GenerateIdentityHash()
1243 return RandomGenerator::Next(INT32_BITS) & INT32_MAX; in GenerateIdentityHash()
/arkcompiler/ets_runtime/ecmascript/
Decma_vm.cpp97 using RandomGenerator = base::RandomGenerator; typedef
148 RandomGenerator::InitRandom(); in PostFork()
Dtagged_node.h71 hash = base::RandomGenerator::GenerateIdentityHash(); in Hash()
Dlinked_hash_table.cpp246 hash = base::RandomGenerator::GenerateIdentityHash(); in Hash()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_math.cpp26 using RandomGenerator = base::RandomGenerator; typedef
638 return GetTaggedDouble(RandomGenerator::NextDouble()); in Random()
Dbuiltins.cpp154 using RandomGenerator = base::RandomGenerator; typedef
1690 RandomGenerator::InitRandom(); in InitializeMath()
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_lightweightset.cpp467 hash = static_cast<uint32_t>(base::RandomGenerator::GenerateIdentityHash()); in Hash()
Djs_api_lightweightmap.cpp469 hash = base::RandomGenerator::GenerateIdentityHash(); in Hash()
/arkcompiler/ets_runtime/ecmascript/debugger/
Ddebugger_api.cpp304 int32_t hash = base::RandomGenerator::GenerateIdentityHash(); in GetObjectHash()