OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:uint64_to_double
(Results
1 - 7
of
7
) sorted by null
/external/v8/src/runtime/
runtime-maths.cc
61
return *isolate->factory()->NewNumber(
uint64_to_double
(result));
293
array[kState0Offset] =
uint64_to_double
(state0);
294
array[kState1Offset] =
uint64_to_double
(state1);
/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/third_party/fdlibm/
fdlibm.cc
208
double z = internal::
uint64_to_double
(zi);
/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
708
CHECK_EQ(0x12345678u, f(
uint64_to_double
(value1)));
710
CHECK_EQ(0x87654321u, f(
uint64_to_double
(value2)));
[
all
...]
Completed in 266 milliseconds