Lines Matching refs:AddWithCarryResult

1903     AddWithCarryResult res = AddWithCarry(sp, imm32, 0);  in EmulateADDSPImm()
2433 AddWithCarryResult res = AddWithCarry(sp, ~imm32, 1); in EmulateSUBSPImm()
3107 AddWithCarryResult res = AddWithCarry(Rn, imm32, 0); in EmulateADDImmThumb()
3173 AddWithCarryResult res = AddWithCarry(val1, imm32, 0); in EmulateADDImmARM()
3267 AddWithCarryResult res = AddWithCarry(val1, shifted, 0); in EmulateADDReg()
3322 AddWithCarryResult res = AddWithCarry(reg_val, imm32, 0); in EmulateCMNImm()
3389 AddWithCarryResult res = AddWithCarry(val1, shifted, 0); in EmulateCMNReg()
3439 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, 1); in EmulateCMPImm()
3515 AddWithCarryResult res = AddWithCarry(val1, ~shifted, 1); in EmulateCMPReg()
5849 AddWithCarryResult res = AddWithCarry(val1, imm32, APSR_C); in EmulateADCImm()
5936 AddWithCarryResult res = AddWithCarry(val1, shifted, APSR_C); in EmulateADCReg()
9214 AddWithCarryResult res = AddWithCarry(~reg_val, imm32, 1); in EmulateRSBImm()
9293 AddWithCarryResult res = AddWithCarry(~val1, shifted, 1); in EmulateRSBReg()
9351 AddWithCarryResult res = AddWithCarry(~reg_val, imm32, APSR_C); in EmulateRSCImm()
9421 AddWithCarryResult res = AddWithCarry(~val1, shifted, APSR_C); in EmulateRSCReg()
9488 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, APSR_C); in EmulateSBCImm()
9575 AddWithCarryResult res = AddWithCarry(val1, ~shifted, APSR_C); in EmulateSBCReg()
9664 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, 1); in EmulateSUBImmThumb()
9731 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, 1); in EmulateSUBImmARM()
10088 AddWithCarryResult res = AddWithCarry(sp_val, ~shifted, 1); in EmulateSUBSPReg()
10174 AddWithCarryResult res = AddWithCarry(Rn, shifted, 0); in EmulateADDRegShift()
10306 AddWithCarryResult res = AddWithCarry(Rn, ~shifted, 1); in EmulateSUBReg()
12751 AddWithCarryResult result; in EmulateSUBSPcLrEtc()
14161 EmulateInstructionARM::AddWithCarryResult
14179 AddWithCarryResult res = {result, carry_out, overflow}; in AddWithCarry()