Home
last modified time | relevance | path

Searched refs:uint64_to_double (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/runtime/
Druntime-maths.cc61 raw_cache->set(kState0Offset, uint64_to_double(state0)); in RUNTIME_FUNCTION()
62 raw_cache->set(kState1Offset, uint64_to_double(state1)); in RUNTIME_FUNCTION()
Druntime-test.cc71 return *isolate->factory()->NewNumber(uint64_to_double(result)); in RUNTIME_FUNCTION()
/external/v8/src/
Ddouble.h15 inline double uint64_to_double(uint64_t d64) { return bit_cast<double>(d64); } in uint64_to_double() function
155 double value() const { return uint64_to_double(d64_); } in value()
Dconversions-inl.h34 return negative ? uint64_to_double(Double::kSignMask) : 0.0; in SignedZero()