Lines Matching refs:AddWithCarryResult

1916     AddWithCarryResult res = AddWithCarry(sp, imm32, 0);  in EmulateADDSPImm()
2446 AddWithCarryResult res = AddWithCarry(sp, ~imm32, 1); in EmulateSUBSPImm()
3120 AddWithCarryResult res = AddWithCarry(Rn, imm32, 0); in EmulateADDImmThumb()
3186 AddWithCarryResult res = AddWithCarry(val1, imm32, 0); in EmulateADDImmARM()
3280 AddWithCarryResult res = AddWithCarry(val1, shifted, 0); in EmulateADDReg()
3335 AddWithCarryResult res = AddWithCarry(reg_val, imm32, 0); in EmulateCMNImm()
3402 AddWithCarryResult res = AddWithCarry(val1, shifted, 0); in EmulateCMNReg()
3452 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, 1); in EmulateCMPImm()
3528 AddWithCarryResult res = AddWithCarry(val1, ~shifted, 1); in EmulateCMPReg()
5862 AddWithCarryResult res = AddWithCarry(val1, imm32, APSR_C); in EmulateADCImm()
5949 AddWithCarryResult res = AddWithCarry(val1, shifted, APSR_C); in EmulateADCReg()
9227 AddWithCarryResult res = AddWithCarry(~reg_val, imm32, 1); in EmulateRSBImm()
9306 AddWithCarryResult res = AddWithCarry(~val1, shifted, 1); in EmulateRSBReg()
9364 AddWithCarryResult res = AddWithCarry(~reg_val, imm32, APSR_C); in EmulateRSCImm()
9434 AddWithCarryResult res = AddWithCarry(~val1, shifted, APSR_C); in EmulateRSCReg()
9501 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, APSR_C); in EmulateSBCImm()
9588 AddWithCarryResult res = AddWithCarry(val1, ~shifted, APSR_C); in EmulateSBCReg()
9677 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, 1); in EmulateSUBImmThumb()
9744 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, 1); in EmulateSUBImmARM()
10101 AddWithCarryResult res = AddWithCarry(sp_val, ~shifted, 1); in EmulateSUBSPReg()
10187 AddWithCarryResult res = AddWithCarry(Rn, shifted, 0); in EmulateADDRegShift()
10319 AddWithCarryResult res = AddWithCarry(Rn, ~shifted, 1); in EmulateSUBReg()
12764 AddWithCarryResult result; in EmulateSUBSPcLrEtc()
14212 EmulateInstructionARM::AddWithCarryResult
14230 AddWithCarryResult res = {result, carry_out, overflow}; in AddWithCarry()