Home | History | Annotate | Download | only in fpe

Lines Matching defs:f0

115 #define	FP_TOF(exp, expbias, allfrac, f0, f1, f2, f3) \
120 fp->fp_mant[0] = f0; \
129 fp->fp_mant[0] = f0; \
135 fp->fp_mant[0] = FP_1 | f0; \
149 uint32_t frac, f0, f1;
154 f0 = frac >> SNG_SHIFT;
156 FP_TOF(exp, SNG_EXP_BIAS, frac, f0, f1, 0, 0);
167 uint32_t frac, f0, f1, f2;
172 f0 = frac >> DBL_SHIFT;
176 FP_TOF(exp, DBL_EXP_BIAS, frac, f0, f1, f2, 0);
186 uint32_t f0, f1, f2;
190 f0 = j >> EXT_SHIFT;
199 fp->fp_mant[0] = f0;
209 fp->fp_mant[0] = f0;
215 fp->fp_mant[0] = FP_1 | f0;