Home | History | Annotate | Download | only in fpu

Lines Matching defs:f0

140 #define	FP_TOF(exp, expbias, allfrac, f0, f1, f2, f3) \
145 fp->fp_mant[0] = f0; \
155 fp->fp_mant[0] = f0; \
162 fp->fp_mant[0] = FP_1 | f0; \
177 u_int frac, f0, f1;
182 f0 = frac >> SNG_SHIFT;
184 FP_TOF(exp, SNG_EXP_BIAS, frac, f0, f1, 0, 0);
195 u_int frac, f0, f1, f2;
200 f0 = frac >> DBL_SHIFT;
204 FP_TOF(exp, DBL_EXP_BIAS, frac, f0, f1, f2, 0);