Home
last modified time | relevance | path

Searched refs:LOW_U32_FROM_PTR (Results 1 – 2 of 2) sorted by relevance

/libcore/luni/src/main/native/
Dcbigint.cpp145 HIGH_IN_U64 (product) + arg2 * LOW_U32_FROM_PTR (arg1 + index); in simpleMultiplyHighPrecision()
146 LOW_U32_FROM_PTR (arg1 + index) = LOW_U32_FROM_VAR (product); in simpleMultiplyHighPrecision()
172 arg2 * LOW_U32_FROM_PTR (arg1 + index); in simpleMultiplyAddHighPrecision()
237 LOW_U32_FROM_PTR (arg1 + index) = LOW_U32_FROM_VAR (digit); in simpleAppendDecimalDigitHighPrecision()
294 x = LOW_U32_FROM_PTR (y); in highestSetBit()
334 x = LOW_U32_FROM_PTR (y); in lowestSetBit()
461 test = (LOW_U32_FROM_PTR (arg) << (11 - highBit)) & 0x7FF; in toDoubleHighPrecision()
510 test = (LOW_U32_FROM_PTR (arg + length) << (11 - highBit)) & 0x7FF; in toDoubleHighPrecision()
701 … static_cast<uint64_t>(LOW_U32_FROM_VAR (arg2)) * static_cast<uint64_t>(LOW_U32_FROM_PTR (pArg1)); in simpleMultiplyHighPrecision64()
714 … static_cast<uint64_t>(HIGH_U32_FROM_VAR (arg2)) * static_cast<uint64_t>(LOW_U32_FROM_PTR (pArg1)); in simpleMultiplyHighPrecision64()
[all …]
Dcbigint.h84 #define LOW_U32_FROM_PTR(u64ptr) LOW_U32_FROM_LONG64_PTR(u64ptr) macro