Lines Matching refs:AddWithCarryResult

1908     AddWithCarryResult res = AddWithCarry(sp, imm32, 0);  in EmulateADDSPImm()
2438 AddWithCarryResult res = AddWithCarry(sp, ~imm32, 1); in EmulateSUBSPImm()
3112 AddWithCarryResult res = AddWithCarry(Rn, imm32, 0); in EmulateADDImmThumb()
3178 AddWithCarryResult res = AddWithCarry(val1, imm32, 0); in EmulateADDImmARM()
3272 AddWithCarryResult res = AddWithCarry(val1, shifted, 0); in EmulateADDReg()
3327 AddWithCarryResult res = AddWithCarry(reg_val, imm32, 0); in EmulateCMNImm()
3394 AddWithCarryResult res = AddWithCarry(val1, shifted, 0); in EmulateCMNReg()
3444 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, 1); in EmulateCMPImm()
3520 AddWithCarryResult res = AddWithCarry(val1, ~shifted, 1); in EmulateCMPReg()
5854 AddWithCarryResult res = AddWithCarry(val1, imm32, APSR_C); in EmulateADCImm()
5941 AddWithCarryResult res = AddWithCarry(val1, shifted, APSR_C); in EmulateADCReg()
9219 AddWithCarryResult res = AddWithCarry(~reg_val, imm32, 1); in EmulateRSBImm()
9298 AddWithCarryResult res = AddWithCarry(~val1, shifted, 1); in EmulateRSBReg()
9356 AddWithCarryResult res = AddWithCarry(~reg_val, imm32, APSR_C); in EmulateRSCImm()
9426 AddWithCarryResult res = AddWithCarry(~val1, shifted, APSR_C); in EmulateRSCReg()
9493 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, APSR_C); in EmulateSBCImm()
9580 AddWithCarryResult res = AddWithCarry(val1, ~shifted, APSR_C); in EmulateSBCReg()
9669 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, 1); in EmulateSUBImmThumb()
9736 AddWithCarryResult res = AddWithCarry(reg_val, ~imm32, 1); in EmulateSUBImmARM()
10093 AddWithCarryResult res = AddWithCarry(sp_val, ~shifted, 1); in EmulateSUBSPReg()
10179 AddWithCarryResult res = AddWithCarry(Rn, shifted, 0); in EmulateADDRegShift()
10311 AddWithCarryResult res = AddWithCarry(Rn, ~shifted, 1); in EmulateSUBReg()
12756 AddWithCarryResult result; in EmulateSUBSPcLrEtc()
14168 EmulateInstructionARM::AddWithCarryResult
14186 AddWithCarryResult res = {result, carry_out, overflow}; in AddWithCarry()