Searched refs:isOF (Results 1 – 2 of 2) sorted by relevance
2432 bool isOF = false; in DecodeTwoByte() local2435 isOF = CheckOverflowForIntAdd(r1_val, r2_val, int32_t); in DecodeTwoByte()2438 SetS390OverflowCode(isOF); in DecodeTwoByte()2441 isOF = CheckOverflowForIntSub(r1_val, r2_val, int32_t); in DecodeTwoByte()2444 SetS390OverflowCode(isOF); in DecodeTwoByte()2560 bool isOF = false; in DecodeTwoByte() local2563 isOF = CheckOverflowForUIntAdd(r1_val, r2_val); in DecodeTwoByte()2566 isOF = CheckOverflowForUIntSub(r1_val, r2_val); in DecodeTwoByte()2571 SetS390ConditionCodeCarry<uint32_t>(alu_out, isOF); in DecodeTwoByte()2969 bool isOF = false; in DecodeFourByte() local[all …]
435 void SetS390OverflowCode(bool isOF) { in SetS390OverflowCode() argument436 if (isOF) condition_reg_ = CC_OF; in SetS390OverflowCode()