Searched refs:roundUp (Results 1 – 2 of 2) sorted by relevance
153 bool roundUp = (lastRemovedBit != 0) && (!trailingZeros || (((m2 >> shift) & 1) != 0)); in __atof_engine() local156 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()
156 bool roundUp = (lastRemovedBit != 0) && (!trailingZeros || (((m2 >> shift) & 1) != 0)); in __atod_engine() local159 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()