Home
last modified time | relevance | path

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

/picolibc-latest/newlib/libc/tinystdio/
Datof_ryu.c153 bool roundUp = (lastRemovedBit != 0) && (!trailingZeros || (((m2 >> shift) & 1) != 0)); in __atof_engine() local
156 printf("roundUp = %d\n", roundUp); in __atof_engine()
157 printf("ieee_m2 = %lu\n", (m2 >> shift) + roundUp); in __atof_engine()
159 uint32_t ieee_m2 = (m2 >> shift) + roundUp; in __atof_engine()
162 if (ieee_m2 == 0 && roundUp) { in __atof_engine()
Datod_ryu.c156 bool roundUp = (lastRemovedBit != 0) && (!trailingZeros || (((m2 >> shift) & 1) != 0)); in __atod_engine() local
159 printf("roundUp = %d\n", roundUp); in __atod_engine()
160 printf("ieee_m2 = 0x%" PRIx64 "\n", (m2 >> shift) + roundUp); in __atod_engine()
162 uint64_t ieee_m2 = (m2 >> shift) + roundUp; in __atod_engine()
165 if (ieee_m2 == 0 && roundUp) { in __atod_engine()