Home | History | Annotate | Download | only in fpu

Lines Matching defs:f2

140 #define	FP_TOF(exp, expbias, allfrac, f0, f1, f2, f3) \
147 fp->fp_mant[2] = f2; \
157 fp->fp_mant[2] = f2; \
164 fp->fp_mant[2] = f2; \
195 u_int frac, f0, f1, f2;
202 f2 = j << (32 - DBL_SHIFT);
204 FP_TOF(exp, DBL_EXP_BIAS, frac, f0, f1, f2, 0);
214 u_int frac, f0, f1, f2, f3;
224 f2 = (k << EXT_SHIFT) | (l >> (32 - EXT_SHIFT));
227 FP_TOF(exp, EXT_EXP_BIAS, frac, f0, f1, f2, f3);