Home
last modified time | relevance | path

Searched refs:reqexp (Results 1 – 1 of 1) sorted by relevance

/openbsd-src/gnu/gcc/libdecnumber/
H A DdecNumber.c3619 Int reqexp; /* requested exponent [-scale] */ in decQuantizeOp() local
3671 reqexp = inrhs->exponent; /* quantize -- match exponents */ in decQuantizeOp()
3676 reqexp = decGetInt (inrhs, set); in decQuantizeOp()
3678 reqexp = decGetInt (inrhs); in decQuantizeOp()
3687 if (reqexp == BADINT /* bad (rescale only) or .. */ in decQuantizeOp()
3688 || (reqexp < etiny) /* < lowest */ in decQuantizeOp()
3689 || (reqexp > set->emax)) in decQuantizeOp()
3699 res->exponent = reqexp; /* .. just set exponent */ in decQuantizeOp()
3707 Int adjust = reqexp - lhs->exponent; /* digit adjustment needed */ in decQuantizeOp()
3728 if (res->exponent > reqexp) in decQuantizeOp()