nout 715 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 775 src/dps8/dps8_decimal.c if (nout + min (sf,0) < r2digits) { nout 778 src/dps8/dps8_decimal.c set->digits = r2digits - (nout + min (sf,0)); nout 791 src/dps8/dps8_decimal.c if (nout < r->digits) { // not enough space to move all digits nout 798 src/dps8/dps8_decimal.c set->digits = nout; nout 813 src/dps8/dps8_decimal.c int justif = nout - r->digits; nout 814 src/dps8/dps8_decimal.c for (int i = 0; i < nout; i ++) { nout 820 src/dps8/dps8_decimal.c out [nout] = 0; nout 46 src/dps8/dps8_decimal.h char *formatDecimal(uint8_t * out, decContext *set, decNumber *r, int nout, int s,