HomeSort by relevance Sort by last modified time
    Searched defs:low_word (Results 1 - 2 of 2) sorted by null

  /external/v8/src/wasm/
wasm-external-refs.cc 53 // static_cast<float>(high_word) * 2^32 + static_cast<float>(low_word). To
56 // the high_word if the low_word may affect the rounding of the high_word.
57 uint32_t low_word = static_cast<uint32_t>(*input & 0xffffffff); local
67 if ((high_word & 0xfe000000) && low_word) {
74 result += static_cast<float>(low_word);
91 // static_cast<double>(high_word) * 2^32 + static_cast<double>(low_word).
92 uint32_t low_word = static_cast<uint32_t>(*input & 0xffffffff); local
99 result += static_cast<double>(low_word);
  /external/valgrind/coregrind/
m_stacktrace.c 1369 unsigned long inst, high_word, low_word; local
    [all...]

Completed in 68 milliseconds