Home
last modified time | relevance | path

Searched refs:nRc (Results 1 – 8 of 8) sorted by relevance

/qemu/linux-user/arm/nwfpe/
H A Dfpopcode.c64 unsigned int nRc; in getRegisterCount() local
68 case 0x00000000: nRc = 4; break; in getRegisterCount()
69 case 0x00008000: nRc = 1; break; in getRegisterCount()
70 case 0x00400000: nRc = 2; break; in getRegisterCount()
71 case 0x00408000: nRc = 3; break; in getRegisterCount()
72 default: nRc = 0; in getRegisterCount()
75 return(nRc); in getRegisterCount()
80 unsigned int nRc; in getDestinationSize() local
84 case 0x00000000: nRc = typeSingle; break; in getDestinationSize()
87 default: nRc = typeNone; in getDestinationSize()
[all …]
H A Dfpa11_cprt.c38 unsigned int nRc = 1; in EmulateCPRT() local
54 case FLT_CODE >> 20: nRc = PerformFLT(opcode); break; in EmulateCPRT()
55 case FIX_CODE >> 20: nRc = PerformFIX(opcode); break; in EmulateCPRT()
66 default: nRc = 0; in EmulateCPRT()
69 return nRc; in EmulateCPRT()
76 unsigned int nRc = 1; in PerformFLT() local
105 default: nRc = 0; in PerformFLT()
108 return nRc; in PerformFLT()
114 unsigned int nRc = 1; in PerformFIX() local
143 default: nRc = 0; in PerformFIX()
[all …]
H A Dfpa11.c138 unsigned int nRc = 0; in EmulateAll() local
177 nRc = EmulateCPRT(opcode); in EmulateAll()
184 nRc = EmulateCPDO(opcode); in EmulateAll()
191 nRc = EmulateCPDT(opcode); in EmulateAll()
196 nRc = 0; in EmulateAll()
200 if(nRc == 1 && get_float_exception_flags(&fpa11->fp_status)) in EmulateAll()
203 nRc = -get_float_exception_flags(&fpa11->fp_status); in EmulateAll()
207 return(nRc); in EmulateAll()
H A Dfpa11_cpdo.c28 unsigned int Fd, nType, nDest, nRc = 1; in EmulateCPDO() local
60 case typeSingle : nRc = SingleCPDO(opcode); break; in EmulateCPDO()
61 case typeDouble : nRc = DoubleCPDO(opcode); break; in EmulateCPDO()
62 case typeExtended : nRc = ExtendedCPDO(opcode); break; in EmulateCPDO()
63 default : nRc = 0; in EmulateCPDO()
71 if ((0 != nRc) && (nDest != nType)) in EmulateCPDO()
112 return nRc; in EmulateCPDO()
H A Dfpa11_cpdt.c218 unsigned int nRc = 1, in PerformLDF() local
243 default: nRc = 0; in PerformLDF()
247 return nRc; in PerformLDF()
253 unsigned int nRc = 1, in PerformSTF() local
279 default: nRc = 0; in PerformSTF()
283 return nRc; in PerformSTF()
355 unsigned int nRc = 0; in EmulateCPDT() local
361 nRc = PerformLDF(opcode); in EmulateCPDT()
365 nRc = PerformLFM(opcode); in EmulateCPDT()
377 nRc = 0; in EmulateCPDT()
[all …]
H A Dsingle_cpdo.c42 unsigned int Fd, Fm, Fn, nRc = 1; in SingleCPDO() local
190 nRc = 0; in SingleCPDO()
194 if (0 != nRc) fpa11->fType[Fd] = typeSingle; in SingleCPDO()
195 return nRc; in SingleCPDO()
H A Dextended_cpdo.c42 unsigned int Fd, Fm, Fn, nRc = 1; in ExtendedCPDO() local
210 nRc = 0; in ExtendedCPDO()
214 if (0 != nRc) fpa11->fType[Fd] = typeExtended; in ExtendedCPDO()
215 return nRc; in ExtendedCPDO()
H A Ddouble_cpdo.c42 unsigned int Fd, Fm, Fn, nRc = 1; in DoubleCPDO() local
226 nRc = 0; in DoubleCPDO()
230 if (0 != nRc) fpa11->fType[Fd] = typeDouble; in DoubleCPDO()
231 return nRc; in DoubleCPDO()