Lines Matching refs:rFn
35 floatx80 floatx80_pow(floatx80 rFn, floatx80 rFm);
36 floatx80 floatx80_pol(floatx80 rFn, floatx80 rFm);
38 static floatx80 floatx80_rsf(floatx80 rFn, floatx80 rFm) in floatx80_rsf() argument
40 return floatx80_sub(rFm, rFn); in floatx80_rsf()
43 static floatx80 floatx80_rdv(floatx80 rFn, floatx80 rFm) in floatx80_rdv() argument
45 return floatx80_div(rFm, rFn); in floatx80_rdv()
48 static floatx80 (*const dyadic_extended[16])(floatx80 rFn, floatx80 rFm) = {
121 floatx80 rFn; in ExtendedCPDO() local
125 rFn = float32_to_floatx80(fpa11->fpreg[Fn].fSingle); in ExtendedCPDO()
129 rFn = float64_to_floatx80(fpa11->fpreg[Fn].fDouble); in ExtendedCPDO()
133 rFn = fpa11->fpreg[Fn].fExtended; in ExtendedCPDO()
141 rFd->fExtended = dyadic_extended[opc_mask_shift](rFn, rFm); in ExtendedCPDO()