Home | History | Annotate | Download | only in fpe

Lines Matching refs:fp_mant

75  * Note that we may leave the value 2.0 in fp->fp_mant; it is the caller's
84 m0 = fp->fp_mant[0];
85 m1 = fp->fp_mant[1];
86 m2 = fp->fp_mant[2];
137 fp->fp_mant[0] = m0;
138 fp->fp_mant[1] = m1;
139 fp->fp_mant[2] = m2;
144 fp->fp_mant[0] = m0;
145 fp->fp_mant[1] = m1;
146 fp->fp_mant[2] = m2;
222 i = fp->fp_mant[2];
252 * Note that fp->fp_mant[0] has the quiet bit set,
289 if (fpu_round(fe, fp) && fp->fp_mant[2] == SNG_EXP(1))
295 return (sign | SNG_EXP(0) | fp->fp_mant[2]);
300 if ((fp->fp_mant[2] & SNG_EXP(1 << FP_NG)) == 0)
303 if (fpu_round(fe, fp) && fp->fp_mant[2] == SNG_EXP(2))
314 return (sign | SNG_EXP(exp) | (fp->fp_mant[2] & SNG_MASK));
350 if (fpu_round(fe, fp) && fp->fp_mant[1] == DBL_EXP(1)) {
362 if (fpu_round(fe, fp) && fp->fp_mant[1] == DBL_EXP(2))
374 res[1] = fp->fp_mant[2];
375 return (sign | DBL_EXP(exp) | (fp->fp_mant[1] & DBL_MASK));
422 if (fpu_round(fe, fp) && fp->fp_mant[1] == EXT_EXPLICIT1) {
436 if (fpu_round(fe, fp) && fp->fp_mant[0] == EXT_EXPLICIT2) {
450 res[1] = fp->fp_mant[1];
451 res[2] = fp->fp_mant[2];