Home | History | Annotate | Download | only in m_debuginfo

Lines Matching refs:wR

2002    UWord wL, wR;
2011 wR = evalCfiExpr( exprs, e->Cex.Binop.ixR, eec, ok );
2014 case Cop_Add: return wL + wR;
2015 case Cop_Sub: return wL - wR;
2016 case Cop_And: return wL & wR;
2017 case Cop_Mul: return wL * wR;
2018 case Cop_Shl: return wL << wR;
2019 case Cop_Shr: return wL >> wR;
2020 case Cop_Eq: return wL == wR ? 1 : 0;
2021 case Cop_Ge: return (Word) wL >= (Word) wR ? 1 : 0;
2022 case Cop_Gt: return (Word) wL > (Word) wR ? 1 : 0;
2023 case Cop_Le: return (Word) wL <= (Word) wR ? 1 : 0;
2024 case Cop_Lt: return (Word) wL < (Word) wR ? 1 : 0;
2025 case Cop_Ne: return wL != wR ? 1 : 0;