Lines Matching refs:dc
81 decContext dc; /* .. */ in decimal128FromNumber() local
95 decContextDefault (&dc, DEC_INIT_DECIMAL128); /* [no traps] */ in decimal128FromNumber()
96 dc.round = set->round; /* use supplied rounding */ in decimal128FromNumber()
97 decNumberPlus (&dw, dn, &dc); /* (round and check) */ in decimal128FromNumber()
99 status |= dc.status; /* save status */ in decimal128FromNumber()
310 decContext dc; /* work */ in decimal128FromString() local
313 decContextDefault (&dc, DEC_INIT_DECIMAL128); /* no traps, please */ in decimal128FromString()
314 dc.round = set->round; /* use supplied rounding */ in decimal128FromString()
316 decNumberFromString (&dn, string, &dc); /* will round if needed */ in decimal128FromString()
317 decimal128FromNumber (result, &dn, &dc); in decimal128FromString()
318 if (dc.status != 0) in decimal128FromString()
320 decContextSetStatus (set, dc.status); /* .. pass it on */ in decimal128FromString()