Lines Matching defs:unitsptr
148 int * unitsptr, int base);
149 static int normalize_overflow(int * tensptr, int * unitsptr,
1598 normalize_overflow(int *tensptr, int *unitsptr, int base)
1602 tensdelta = (*unitsptr >= 0) ?
1603 (*unitsptr / base) :
1604 (-1 - (-1 - *unitsptr) / base);
1605 *unitsptr -= tensdelta * base;
1610 long_normalize_overflow(long *tensptr, int *unitsptr, int base)
1614 tensdelta = (*unitsptr >= 0) ?
1615 (*unitsptr / base) :
1616 (-1 - (-1 - *unitsptr) / base);
1617 *unitsptr -= tensdelta * base;