Home | History | Annotate | Download | only in native

Lines Matching refs:overflow

676   uint64_t overflow;
685 overflow = simpleAppendDecimalDigitHighPrecision(result, length, 0);
686 if (overflow)
687 result[length++] = overflow;
701 overflow = simpleMultiplyHighPrecision64 (result, length, TEN_E19);
702 if (overflow)
703 result[length++] = overflow;
708 overflow = simpleMultiplyHighPrecision (result, length, TEN_E9);
709 if (overflow)
710 result[length++] = overflow;
717 overflow = simpleAppendDecimalDigitHighPrecision (result, length, 0);
718 if (overflow)
719 result[length++] = overflow;
723 overflow = simpleAppendDecimalDigitHighPrecision (result, length, 0);
724 if (overflow)
725 result[length++] = overflow;
726 overflow = simpleAppendDecimalDigitHighPrecision (result, length, 0);
727 if (overflow)
728 result[length++] = overflow;
732 overflow = simpleMultiplyHighPrecision (result, length, TEN_E3);
733 if (overflow)
734 result[length++] = overflow;
738 overflow = simpleMultiplyHighPrecision (result, length, TEN_E4);
739 if (overflow)
740 result[length++] = overflow;
744 overflow = simpleMultiplyHighPrecision (result, length, TEN_E5);
745 if (overflow)
746 result[length++] = overflow;
750 overflow = simpleMultiplyHighPrecision (result, length, TEN_E6);
751 if (overflow)
752 result[length++] = overflow;
756 overflow = simpleMultiplyHighPrecision (result, length, TEN_E7);
757 if (overflow)
758 result[length++] = overflow;
762 overflow = simpleMultiplyHighPrecision (result, length, TEN_E8);
763 if (overflow)
764 result[length++] = overflow;