Searched refs:Fm (Results 1 - 11 of 11) sorted by path

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/nwfpe/
H A Ddouble_cpdo.c31 float64 float64_exp(float64 Fm);
32 float64 float64_ln(float64 Fm);
115 unsigned int Fm, opc_mask_shift; local
117 Fm = getFm(opcode);
119 rFm = getDoubleConstant(Fm);
121 switch (fpa11->fType[Fm]) {
123 rFm = float32_to_float64(fpa11->fpreg[Fm].fSingle);
127 rFm = fpa11->fpreg[Fm].fDouble;
H A Dextended_cpdo.c26 floatx80 floatx80_exp(floatx80 Fm);
27 floatx80 floatx80_ln(floatx80 Fm);
94 unsigned int Fm, opc_mask_shift; local
96 Fm = getFm(opcode);
98 rFm = getExtendedConstant(Fm);
100 switch (fpa11->fType[Fm]) {
102 rFm = float32_to_floatx80(fpa11->fpreg[Fm].fSingle);
106 rFm = float64_to_floatx80(fpa11->fpreg[Fm].fDouble);
110 rFm = fpa11->fpreg[Fm].fExtended;
H A Dfpa11_cpdo.c47 /* Compare the size of the operands in Fn and Fm.
50 If Fm is a constant, we just grab a constant of a size
58 register unsigned int Fm = getFm(opcode); local
59 if (nType < fpa11->fType[Fm]) {
60 nType = fpa11->fType[Fm];
H A Dfpa11_cprt.c161 unsigned int Fn = getFn(opcode), Fm = getFm(opcode); local
201 //printk("Fm is a constant: #%d.\n",Fm);
202 rFm = getExtendedConstant(Fm);
206 //printk("Fm = r%d which contains a ",Fm);
207 switch (fpa11->fType[Fm]) {
210 if (float32_is_nan(fpa11->fpreg[Fm].fSingle))
212 rFm = float32_to_floatx80(fpa11->fpreg[Fm].fSingle);
217 if (float64_is_nan(fpa11->fpreg[Fm]
[all...]
H A Dsingle_cpdo.c27 float32 float32_exp(float32 Fm);
28 float32 float32_ln(float32 Fm);
92 unsigned int Fm, opc_mask_shift; local
94 Fm = getFm(opcode);
96 rFm = getSingleConstant(Fm);
97 } else if (fpa11->fType[Fm] == typeSingle) {
98 rFm = fpa11->fpreg[Fm].fSingle;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm26/nwfpe/
H A Ddouble_cpdo.c26 float64 float64_exp(float64 Fm);
27 float64 float64_ln(float64 Fm);
42 unsigned int Fd, Fm, Fn, nRc = 1; local
46 Fm = getFm(opcode);
49 rFm = getDoubleConstant(Fm);
53 switch (fpa11->fType[Fm])
56 rFm = float32_to_float64(fpa11->fpreg[Fm].fSingle);
60 rFm = fpa11->fpreg[Fm].fDouble;
H A Dextended_cpdo.c26 floatx80 floatx80_exp(floatx80 Fm);
27 floatx80 floatx80_ln(floatx80 Fm);
42 unsigned int Fd, Fm, Fn, nRc = 1; local
46 Fm = getFm(opcode);
49 rFm = getExtendedConstant(Fm);
53 switch (fpa11->fType[Fm])
56 rFm = float32_to_floatx80(fpa11->fpreg[Fm].fSingle);
60 rFm = float64_to_floatx80(fpa11->fpreg[Fm].fDouble);
64 rFm = fpa11->fpreg[Fm].fExtended;
H A Dfpa11_cpdo.c43 /* Compare the size of the operands in Fn and Fm.
46 If Fm is a constant, we just grab a constant of a size
55 register unsigned int Fm = getFm(opcode); local
56 if (nType < fpa11->fType[Fm])
58 nType = fpa11->fType[Fm];
H A Dfpa11_cprt.c157 PerformComparisonOperation(floatx80 Fn, floatx80 Fm) argument
162 if (floatx80_lt(Fn,Fm))
168 if (floatx80_eq(Fn,Fm))
174 if (floatx80_lt(Fm,Fn))
188 unsigned int Fn, Fm; local
197 Fm = getFm(opcode);
232 //printk("Fm is a constant: #%d.\n",Fm);
233 rFm = getExtendedConstant(Fm);
239 //printk("Fm
[all...]
H A Dsingle_cpdo.c26 float32 float32_exp(float32 Fm);
27 float32 float32_ln(float32 Fm);
42 unsigned int Fd, Fm, Fn, nRc = 1; local
44 Fm = getFm(opcode);
47 rFm = getSingleConstant(Fm);
51 switch (fpa11->fType[Fm])
54 rFm = fpa11->fpreg[Fm].fSingle;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh/math-emu/
H A Dmath.c69 FP_DECL_##SZ(Fm); FP_DECL_##SZ(Fn); \
70 UNPACK_##SZ(Fm, M); UNPACK_##SZ(Fn, N); \
71 FP_CMP_##SZ(R, Fn, Fm, 2); }while(0)
73 FP_DECL_##SZ(Fm); FP_DECL_##SZ(Fn); \
74 UNPACK_##SZ(Fm, M); UNPACK_##SZ(Fn, N); \
75 FP_CMP_EQ_##SZ(R, Fn, Fm); }while(0)
100 FP_DECL_##SZ(Fm); FP_DECL_##SZ(Fn); FP_DECL_##SZ(Fr); \
101 UNPACK_##SZ(Fm, M); UNPACK_##SZ(Fn, N); \
102 FP_##OP##_##SZ(Fr, Fn, Fm); \
140 FP_DECL_S(Fm);
[all...]

Completed in 92 milliseconds