Lines Matching refs:unitsptr
193 int * unitsptr, int base);
194 static int normalize_overflow(int * tensptr, int * unitsptr,
1793 normalize_overflow(int *const tensptr, int *const unitsptr, const int base) in normalize_overflow() argument
1797 tensdelta = (*unitsptr >= 0) ? in normalize_overflow()
1798 (*unitsptr / base) : in normalize_overflow()
1799 (-1 - (-1 - *unitsptr) / base); in normalize_overflow()
1800 *unitsptr -= tensdelta * base; in normalize_overflow()
1805 long_normalize_overflow(long *const tensptr, int *const unitsptr, const int base) in long_normalize_overflow() argument
1809 tensdelta = (*unitsptr >= 0) ? in long_normalize_overflow()
1810 (*unitsptr / base) : in long_normalize_overflow()
1811 (-1 - (-1 - *unitsptr) / base); in long_normalize_overflow()
1812 *unitsptr -= tensdelta * base; in long_normalize_overflow()