nout              705 src/dps8/dps8_decimal.c char *formatDecimal (uint8_t * out, decContext *set, decNumber *r, int nout, int s, int sf, bool R, bool *OVR, bool *TRUNC) {
nout              766 src/dps8/dps8_decimal.c     if (nout + min (sf,0) < r2digits) {
nout              770 src/dps8/dps8_decimal.c       set->digits = r2digits - (nout + min (sf,0));
nout              783 src/dps8/dps8_decimal.c   if (nout < r->digits) { // not enough space to move all digits
nout              790 src/dps8/dps8_decimal.c     set->digits = nout;
nout              805 src/dps8/dps8_decimal.c   int justif = nout - r->digits;
nout              806 src/dps8/dps8_decimal.c   for (int i = 0; i < nout; i ++) {
nout              812 src/dps8/dps8_decimal.c   out [nout] = 0;
nout               49 src/dps8/dps8_decimal.h char *formatDecimal(uint8_t * out, decContext *set, decNumber *r, int nout, int s,