Home
last modified time | relevance | path

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

/picolibc-latest/newlib/libc/tinystdio/
Dryu_table.c152 uint64_t high0; in __double_computePow5() local
153 const uint64_t low0 = umul128(m, mul[0], &high0); in __double_computePow5()
154 const uint64_t sum = high0 + low1; in __double_computePow5()
155 if (sum < high0) { in __double_computePow5()
178 uint64_t high0; in __double_computeInvPow5() local
179 const uint64_t low0 = umul128(m, mul[0] - 1, &high0); in __double_computeInvPow5()
180 const uint64_t sum = high0 + low1; in __double_computeInvPow5()
181 if (sum < high0) { in __double_computeInvPow5()
/picolibc-latest/newlib/libc/tinystdio/ryu/
Dd2s_intrinsics.h246 uint64_t high0; // 64 in mulShift64() local
247 umul128(m, mul[0], &high0); // 0 in mulShift64()
248 const uint64_t sum = high0 + low1; in mulShift64()
249 if (sum < high0) { in mulShift64()
268 uint64_t high0; // 64 in mulShift64() local
269 umul128(m, mul[0], &high0); // 0 in mulShift64()
270 const uint64_t sum = high0 + low1; in mulShift64()
271 if (sum < high0) { in mulShift64()