Home
last modified time | relevance | path

Searched refs:double_to_uint64 (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/runtime/
Druntime-maths.cc36 state0 = double_to_uint64(cache->get_scalar(kState0Offset)); in RUNTIME_FUNCTION()
37 state1 = double_to_uint64(cache->get_scalar(kState1Offset)); in RUNTIME_FUNCTION()
/external/v8/src/
Ddouble.h15 inline uint64_t double_to_uint64(double d) { return bit_cast<uint64_t>(d); } in double_to_uint64() function
33 explicit Double(double d) : d64_(double_to_uint64(d)) {} in Double()
Dobjects-inl.h3083 hash = ComputeLongHash(double_to_uint64(num)); in GetSimpleHash()
/external/icu/icu4c/source/i18n/
Ddouble-conversion-ieee.h50 static uint64_t double_to_uint64(double d) { return BitCast<uint64_t>(d); } in double_to_uint64() function
66 explicit Double(double d) : d64_(double_to_uint64(d)) {} in Double()
/external/v8/src/ast/
Dast.cc958 : ComputeLongHash(double_to_uint64(AsNumber())); in Hash()