Home
last modified time | relevance | path

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

/picolibc-latest/newlib/libc/tinystdio/
Dryu_table.c110 …const uint128_t shiftedSum = (b0 >> delta) + (b2 << (64 - delta)) + ((POW5_OFFSETS[i / 16] >> ((i … in __double_computePow5() local
111 result[0] = (uint64_t) shiftedSum; in __double_computePow5()
112 result[1] = (uint64_t) (shiftedSum >> 64); in __double_computePow5()
130 const uint128_t shiftedSum = in __double_computeInvPow5() local
132 result[0] = (uint64_t) shiftedSum; in __double_computeInvPow5()
133 result[1] = (uint64_t) (shiftedSum >> 64); in __double_computeInvPow5()
Dryu_divpow2.c54 const uint64_t shiftedSum = sum >> (shift - 32); in mulShift32() local
55 assert(shiftedSum <= UINT32_MAX); in mulShift32()
56 return (uint32_t) shiftedSum; in mulShift32()