Lines Matching refs:AddWithCarryResult
1906 AddWithCarryResult res = AddWithCarry(sp, imm32, 0); in EmulateADDSPImm()
2435 AddWithCarryResult res = AddWithCarry(sp, ~imm32, 1); in EmulateSUBSPImm()
3107 AddWithCarryResult res = AddWithCarry(Rn, imm32, 0); in EmulateADDImmThumb()
3172 AddWithCarryResult res = AddWithCarry(val1, imm32, 0); in EmulateADDImmARM()
3266 AddWithCarryResult res = AddWithCarry(val1, shifted, 0); in EmulateADDReg()
3321 AddWithCarryResult res = AddWithCarry(reg_val, imm32, 0); in EmulateCMNImm()
3388 AddWithCarryResult res = AddWithCarry(val1, shifted, 0); in EmulateCMNReg()
3438 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, 1); in EmulateCMPImm()
3514 AddWithCarryResult res = AddWithCarry(val1, ~shifted, 1); in EmulateCMPReg()
5832 AddWithCarryResult res = AddWithCarry(val1, imm32, APSR_C); in EmulateADCImm()
5919 AddWithCarryResult res = AddWithCarry(val1, shifted, APSR_C); in EmulateADCReg()
9194 AddWithCarryResult res = AddWithCarry(~reg_val, imm32, 1); in EmulateRSBImm()
9273 AddWithCarryResult res = AddWithCarry(~val1, shifted, 1); in EmulateRSBReg()
9331 AddWithCarryResult res = AddWithCarry(~reg_val, imm32, APSR_C); in EmulateRSCImm()
9401 AddWithCarryResult res = AddWithCarry(~val1, shifted, APSR_C); in EmulateRSCReg()
9468 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, APSR_C); in EmulateSBCImm()
9555 AddWithCarryResult res = AddWithCarry(val1, ~shifted, APSR_C); in EmulateSBCReg()
9644 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, 1); in EmulateSUBImmThumb()
9711 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, 1); in EmulateSUBImmARM()
10068 AddWithCarryResult res = AddWithCarry(sp_val, ~shifted, 1); in EmulateSUBSPReg()
10154 AddWithCarryResult res = AddWithCarry(Rn, shifted, 0); in EmulateADDRegShift()
10286 AddWithCarryResult res = AddWithCarry(Rn, ~shifted, 1); in EmulateSUBReg()
12721 AddWithCarryResult result; in EmulateSUBSPcLrEtc()
14131 EmulateInstructionARM::AddWithCarryResult
14149 AddWithCarryResult res = {result, carry_out, overflow}; in AddWithCarry()