Home | History | Annotate | Download | only in fpe

Lines Matching defs:f1

115 #define	FP_TOF(exp, expbias, allfrac, f0, f1, f2, f3) \
121 fp->fp_mant[1] = f1; \
130 fp->fp_mant[1] = f1; \
136 fp->fp_mant[1] = f1; \
149 uint32_t frac, f0, f1;
155 f1 = frac << (32 - SNG_SHIFT);
156 FP_TOF(exp, SNG_EXP_BIAS, frac, f0, f1, 0, 0);
167 uint32_t frac, f0, f1, f2;
173 f1 = (frac << (32 - DBL_SHIFT)) | (j >> DBL_SHIFT);
176 FP_TOF(exp, DBL_EXP_BIAS, frac, f0, f1, f2, 0);
186 uint32_t f0, f1, f2;
191 f1 = (j << (32 - EXT_SHIFT)) | (k >> EXT_SHIFT);
200 fp->fp_mant[1] = f1;
210 fp->fp_mant[1] = f1;
216 fp->fp_mant[1] = f1;