HomeSort by relevance Sort by last modified time
    Searched refs:double_to_uint64 (Results 1 - 4 of 4) sorted by null

  /external/v8/src/
double.h 14 inline uint64_t double_to_uint64(double d) { return bit_cast<uint64_t>(d); } function in namespace:v8::internal
29 explicit Double(double d) : d64_(double_to_uint64(d)) {}
runtime.cc     [all...]
objects.cc 839 uint32_t hash = ComputeLongHash(double_to_uint64(Number()));
    [all...]
  /external/v8/third_party/fdlibm/
fdlibm.cc 250 int32_t hx = static_cast<int32_t>(internal::double_to_uint64(x) >> 32);
259 uint64_t zi = internal::double_to_uint64(x) & 0xFFFFFFFFu;

Completed in 1083 milliseconds