Home | History | Annotate | Download | only in m_debuginfo

Lines Matching refs:wR

2058    UWord w, wL, wR;
2077 wR = evalCfiExpr( exprs, e->Cex.Binop.ixR, eec, ok );
2080 case Cbinop_Add: return wL + wR;
2081 case Cbinop_Sub: return wL - wR;
2082 case Cbinop_And: return wL & wR;
2083 case Cbinop_Mul: return wL * wR;
2084 case Cbinop_Shl: return wL << wR;
2085 case Cbinop_Shr: return wL >> wR;
2086 case Cbinop_Eq: return wL == wR ? 1 : 0;
2087 case Cbinop_Ge: return (Word) wL >= (Word) wR ? 1 : 0;
2088 case Cbinop_Gt: return (Word) wL > (Word) wR ? 1 : 0;
2089 case Cbinop_Le: return (Word) wL <= (Word) wR ? 1 : 0;
2090 case Cbinop_Lt: return (Word) wL < (Word) wR ? 1 : 0;
2091 case Cbinop_Ne: return wL != wR ? 1 : 0;