un                421 src/dps8/dps8_math128.c     uint16_t un [m+1];
un                422 src/dps8/dps8_math128.c     un[m] = u[m-1] >> (16-s);
un                424 src/dps8/dps8_math128.c       un[i] = (uint16_t) (u[i] << s) | (uint16_t) (u[i-1] >> (16-s));
un                425 src/dps8/dps8_math128.c     un[0] = (uint16_t) (u[0] << s);
un                429 src/dps8/dps8_math128.c         qhat = (un[j+n]*b + un[j+n-1])/vn[n-1];
un                430 src/dps8/dps8_math128.c         rhat = (un[j+n]*b + un[j+n-1])%vn[n-1];
un                432 src/dps8/dps8_math128.c         if (qhat >= b || (unsigned)qhat*(unsigned long long)vn[n-2] > b*rhat + un[j+n-2])
un                444 src/dps8/dps8_math128.c             t = (int32_t) un[i+j] - k - (int32_t) (p & 0xFFFF);
un                445 src/dps8/dps8_math128.c             un[i+j] = (uint16_t) t;
un                448 src/dps8/dps8_math128.c         t = un[j+n] - k;
un                449 src/dps8/dps8_math128.c         un[j+n] = (uint16_t) t;
un                458 src/dps8/dps8_math128.c                 t = un[i+j] + vn[i] + k;
un                459 src/dps8/dps8_math128.c                 un[i+j] = (uint16_t) t;
un                462 src/dps8/dps8_math128.c              un[j+n] = (uint16_t) (un[j+n] + k);
un                470 src/dps8/dps8_math128.c           r[i] = (uint16_t) (un[i] >> s) | (uint16_t) (un[i+1] << (16-s));