HomeSort by relevance Sort by last modified time
    Searched full:uint64_to_double (Results 1 - 7 of 7) sorted by null

  /external/v8/src/
double.h 15 inline double uint64_to_double(uint64_t d64) { return bit_cast<double>(d64); } function in namespace:v8::internal
155 double value() const { return uint64_to_double(d64_); }
conversions-inl.h 34 return negative ? uint64_to_double(Double::kSignMask) : 0.0;
  /external/v8/src/runtime/
runtime-maths.cc 131 array[kState0Offset] = uint64_to_double(state0);
132 array[kState1Offset] = uint64_to_double(state1);
runtime-test.cc 23 return *isolate->factory()->NewNumber(uint64_to_double(result));
  /external/bzip2/
bzip2.c 252 double uInt64_to_double ( UInt64* n )
392 nbytes_in_d = uInt64_to_double ( &nbytes_in );
393 nbytes_out_d = uInt64_to_double ( &nbytes_out );
    [all...]
  /external/v8/test/cctest/
test-assembler-ia32.cc 555 CHECK_EQ(0x12345678, f(uint64_to_double(value1)));
557 CHECK_EQ(static_cast<int>(0x87654321), f(uint64_to_double(value2)));
    [all...]
test-assembler-x64.cc 734 CHECK_EQ(0x12345678u, f(uint64_to_double(value1)));
736 CHECK_EQ(0x87654321u, f(uint64_to_double(value2)));
    [all...]

Completed in 1113 milliseconds