Searched refs:nRc (Results 1 – 11 of 11) sorted by relevance
/openbmc/qemu/linux-user/arm/nwfpe/ |
H A D | fpopcode.c | 64 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 D | fpa11_cprt.c | 38 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 D | fpa11_cpdo.c | 28 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 D | fpa11.c | 138 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 D | fpa11_cpdt.c | 218 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 D | single_cpdo.c | 42 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 D | extended_cpdo.c | 42 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 D | double_cpdo.c | 42 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()
|
/openbmc/linux/arch/arm/nwfpe/ |
H A D | fpopcode.h | 385 nRc = 1; in getTransferLength() 388 nRc = 2; in getTransferLength() 391 nRc = 3; in getTransferLength() 394 nRc = 0; in getTransferLength() 406 nRc = 4; in getRegisterCount() 409 nRc = 1; in getRegisterCount() 412 nRc = 2; in getRegisterCount() 415 nRc = 3; in getRegisterCount() 418 nRc = 0; in getRegisterCount() 430 nRc = 1; in getRoundingPrecision() [all …]
|
H A D | fpa11_cpdo.c | 22 unsigned int nType, nDest, nRc; in EmulateCPDO() local 56 nRc = SingleCPDO(&roundData, opcode, rFd); in EmulateCPDO() 59 nRc = DoubleCPDO(&roundData, opcode, rFd); in EmulateCPDO() 63 nRc = ExtendedCPDO(&roundData, opcode, rFd); in EmulateCPDO() 67 nRc = 0; in EmulateCPDO() 73 if (nRc != 0) { in EmulateCPDO() 124 return nRc; in EmulateCPDO()
|
H A D | fpa11_cpdt.c | 247 nRc = 0; in PerformLDF() 252 return nRc; in PerformLDF() 295 nRc = 0; in PerformSTF() 303 return nRc; in PerformSTF() 380 unsigned int nRc = 0; in EmulateCPDT() local 383 nRc = PerformLDF(opcode); in EmulateCPDT() 385 nRc = PerformLFM(opcode); in EmulateCPDT() 387 nRc = PerformSTF(opcode); in EmulateCPDT() 389 nRc = PerformSFM(opcode); in EmulateCPDT() 391 nRc = 0; in EmulateCPDT() [all …]
|