Searched refs:fpa11 (Results 1 - 8 of 8) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/nwfpe/
H A Dfpa11_cprt.c23 #include "fpa11.h"
25 #include "fpa11.inl"
71 FPA11 *fpa11 = GET_FPA11(); local
81 fpa11->fType[getFn(opcode)] = typeSingle;
82 fpa11->fpreg[getFn(opcode)].fSingle = int32_to_float32(&roundData, readRegister(getRd(opcode)));
88 fpa11->fType[getFn(opcode)] = typeDouble;
89 fpa11->fpreg[getFn(opcode)].fDouble = int32_to_float64(readRegister(getRd(opcode)));
96 fpa11->fType[getFn(opcode)] = typeExtended;
97 fpa11->fpreg[getFn(opcode)].fExtended = int32_to_floatx80(readRegister(getRd(opcode)));
114 FPA11 *fpa11 local
156 FPA11 *fpa11 = GET_FPA11(); local
[all...]
H A Dfpa11.c23 #include "fpa11.h"
37 FPA11 *fpa11 = GET_FPA11(); local
41 fpa11->fType[i] = typeNone;
45 fpa11->fpsr = FP_EMULATOR | BIT_AC;
88 FPA11 *fpa11 = (FPA11 *)fp; local
92 memset(fpa11, 0, sizeof(FPA11));
94 fpa11->initflag = 1;
H A Dfpa11_cpdt.c23 #include "fpa11.h"
33 FPA11 *fpa11 = GET_FPA11(); local
34 fpa11->fType[Fn] = typeSingle;
35 get_user(fpa11->fpreg[Fn].fSingle, pMem);
40 FPA11 *fpa11 = GET_FPA11(); local
42 p = (unsigned int *) &fpa11->fpreg[Fn].fDouble;
43 fpa11->fType[Fn] = typeDouble;
56 FPA11 *fpa11 = GET_FPA11(); local
58 p = (unsigned int *) &fpa11->fpreg[Fn].fExtended;
59 fpa11
73 FPA11 *fpa11 = GET_FPA11(); local
105 FPA11 *fpa11 = GET_FPA11(); local
131 FPA11 *fpa11 = GET_FPA11(); local
164 FPA11 *fpa11 = GET_FPA11(); local
196 FPA11 *fpa11 = GET_FPA11(); local
[all...]
H A Dfpa11_cpdo.c23 #include "fpa11.h"
32 FPA11 *fpa11 = GET_FPA11(); local
55 nType = fpa11->fType[getFn(opcode)];
59 if (nType < fpa11->fType[Fm]) {
60 nType = fpa11->fType[Fm];
64 rFd = &fpa11->fpreg[getFd(opcode)];
90 fpa11->fType[getFd(opcode)] = nDest;
H A Dextended_cpdo.c22 #include "fpa11.h"
92 FPA11 *fpa11 = GET_FPA11(); local
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;
123 switch (fpa11->fType[Fn]) {
125 rFn = float32_to_floatx80(fpa11->fpreg[Fn].fSingle);
129 rFn = float64_to_floatx80(fpa11->fpreg[Fn].fDouble);
133 rFn = fpa11
[all...]
H A DMakefile7 nwfpe-y += fpa11.o fpa11_cpdo.o fpa11_cpdt.o \
H A Dsingle_cpdo.c23 #include "fpa11.h"
90 FPA11 *fpa11 = GET_FPA11(); local
97 } else if (fpa11->fType[Fm] == typeSingle) {
98 rFm = fpa11->fpreg[Fm].fSingle;
108 if (fpa11->fType[Fn] == typeSingle &&
110 rFn = fpa11->fpreg[Fn].fSingle;
H A Ddouble_cpdo.c22 #include "fpa11.h"
113 FPA11 *fpa11 = GET_FPA11(); local
121 switch (fpa11->fType[Fm]) {
123 rFm = float32_to_float64(fpa11->fpreg[Fm].fSingle);
127 rFm = fpa11->fpreg[Fm].fDouble;
140 switch (fpa11->fType[Fn]) {
142 rFn = float32_to_float64(fpa11->fpreg[Fn].fSingle);
146 rFn = fpa11->fpreg[Fn].fDouble;

Completed in 122 milliseconds