Lines Matching defs:Rhs
1105 void CheckAdd(const APFixedPoint &Lhs, const APFixedPoint &Rhs,
1108 APFixedPoint Result = Lhs.add(Rhs, &Overflow);
1114 void CheckAddOverflow(const APFixedPoint &Lhs, const APFixedPoint &Rhs) {
1116 APFixedPoint Result = Lhs.add(Rhs, &Overflow);
1158 void CheckMul(const APFixedPoint &Lhs, const APFixedPoint &Rhs,
1161 APFixedPoint Result = Lhs.mul(Rhs, &Overflow);
1167 void CheckMulOverflow(const APFixedPoint &Lhs, const APFixedPoint &Rhs) {
1169 APFixedPoint Result = Lhs.mul(Rhs, &Overflow);
1222 void CheckDiv(const APFixedPoint &Lhs, const APFixedPoint &Rhs,
1225 APFixedPoint Result = Lhs.div(Rhs, &Overflow);
1231 void CheckDivOverflow(const APFixedPoint &Lhs, const APFixedPoint &Rhs) {
1233 APFixedPoint Result = Lhs.div(Rhs, &Overflow);