Home
last modified time | relevance | path

Searched refs:DOUBLE_TO_LONGBITS (Results 1 – 3 of 3) sorted by relevance

/libcore/luni/src/main/native/
Dcbigint.cpp583 DOUBLE_TO_LONGBITS (result) = EXPONENT_MASK; in toDoubleHighPrecision()
592 DOUBLE_TO_LONGBITS (result) = in toDoubleHighPrecision()
599 DOUBLE_TO_LONGBITS (result) = in toDoubleHighPrecision()
605 DOUBLE_TO_LONGBITS (result) = DOUBLE_TO_LONGBITS (result) + 1; in toDoubleHighPrecision()
624 DOUBLE_TO_LONGBITS (result) = in toDoubleHighPrecision()
630 DOUBLE_TO_LONGBITS (result) = DOUBLE_TO_LONGBITS (result) + 1; in toDoubleHighPrecision()
637 DOUBLE_TO_LONGBITS (result) = in toDoubleHighPrecision()
638 DOUBLE_TO_LONGBITS (result) + 1; in toDoubleHighPrecision()
648 DOUBLE_TO_LONGBITS (result) = in toDoubleHighPrecision()
654 DOUBLE_TO_LONGBITS (result) = DOUBLE_TO_LONGBITS (result) + 1; in toDoubleHighPrecision()
[all …]
Djava_lang_StringToReal.cpp80 ++DOUBLE_TO_LONGBITS(_x); \
84 DOUBLE_TO_LONGBITS(_x) += _decCount - _incCount; \
86 DOUBLE_TO_LONGBITS(_x) -= _incCount - _decCount; \
93 --DOUBLE_TO_LONGBITS(_x); \
97 DOUBLE_TO_LONGBITS(_x) += _decCount - _incCount; \
99 DOUBLE_TO_LONGBITS(_x) -= _incCount - _decCount; \
225 DOUBLE_TO_LONGBITS (result) = DOUBLE_INFINITE_LONGBITS; in createDouble()
287 DOUBLE_TO_LONGBITS (result) = DOUBLE_MINIMUM_LONGBITS; in createDouble1()
291 DOUBLE_TO_LONGBITS (result) = DOUBLE_INFINITE_LONGBITS; in createDouble1()
314 DOUBLE_TO_LONGBITS (result) = DOUBLE_MINIMUM_LONGBITS; in createDouble1()
[all …]
Dcbigint.h60 #define DOUBLE_TO_LONGBITS(dbl) (*(reinterpret_cast<uint64_t*>(&dbl))) macro