Lines Matching refs:unitsptr
1899 normalize_overflow(int *const tensptr, int *const unitsptr, const int base)
1903 tensdelta = (*unitsptr >= 0) ?
1904 (*unitsptr / base) :
1905 (-1 - (-1 - *unitsptr) / base);
1906 *unitsptr -= tensdelta * base;
1911 normalize_overflow32(int_fast32_t *tensptr, int *unitsptr, int base)
1915 tensdelta = (*unitsptr >= 0) ?
1916 (*unitsptr / base) :
1917 (-1 - (-1 - *unitsptr) / base);
1918 *unitsptr -= tensdelta * base;