Lines Matching refs:fp_mant
82 m0 = fp->fp_mant[0]; in round()
83 m1 = fp->fp_mant[1]; in round()
84 m2 = fp->fp_mant[2]; in round()
85 m3 = fp->fp_mant[3]; in round()
139 fp->fp_mant[0] = m0; in round()
140 fp->fp_mant[1] = m1; in round()
141 fp->fp_mant[2] = m2; in round()
142 fp->fp_mant[3] = m3; in round()
146 fp->fp_mant[0] = m0; in round()
147 fp->fp_mant[1] = m1; in round()
148 fp->fp_mant[2] = m2; in round()
149 fp->fp_mant[3] = m3; in round()
220 i = fp->fp_mant[3]; in fpu_ftoi()
267 i = ((u_int64_t)fp->fp_mant[2]<<32)|fp->fp_mant[3]; in fpu_ftox()
333 if (round(fe, fp) && fp->fp_mant[3] == SNG_EXP(1)) in fpu_ftos()
338 return (sign | SNG_EXP(0) | fp->fp_mant[3]); in fpu_ftos()
343 if ((fp->fp_mant[3] & SNG_EXP(1 << FP_NG)) == 0) in fpu_ftos()
346 if (round(fe, fp) && fp->fp_mant[3] == SNG_EXP(2)) in fpu_ftos()
356 return (sign | SNG_EXP(exp) | (fp->fp_mant[3] & SNG_MASK)); in fpu_ftos()
390 if (round(fe, fp) && fp->fp_mant[2] == DBL_EXP(1)) { in fpu_ftod()
401 if (round(fe, fp) && fp->fp_mant[2] == DBL_EXP(2)) in fpu_ftod()
413 res[1] = fp->fp_mant[3]; in fpu_ftod()
414 return (sign | DBL_EXP(exp) | (fp->fp_mant[2] & DBL_MASK)); in fpu_ftod()