Home | History | Annotate | Download | only in soft-fp

Lines Matching defs:arprec

37   USItype arprec = rprec < 0 ? -rprec : rprec;
38 USItype rn = ((USItype) arprec + BIL_TYPE_SIZE - 1) / BIL_TYPE_SIZE;
40 USItype rsize = arprec > SI_BITS ? SI_BITS : arprec;
47 if (arprec > SI_BITS)
51 else if (A_e >= (_FP_EXPMAX_S < _FP_EXPBIAS_S + arprec
53 : _FP_EXPBIAS_S + arprec - rsigned))
57 && A_e == _FP_EXPBIAS_S + arprec - 1
59 A_e -= arprec - SI_BITS;
69 FP_TO_BITINT (r, rn, arprec, shift, rv, rsize, rsigned, ovf, SI);