Lines Matching refs:lRight
627 sal_Int32 lRight; in Evaluate() local
630 if( aLeftExp.Evaluate( &lLeft ) && aRightExp.Evaluate( &lRight ) ){ in Evaluate()
632 *plValue = lLeft & lRight; in Evaluate()
634 *plValue = lLeft | lRight; in Evaluate()
636 *plValue = lLeft + lRight; in Evaluate()
638 *plValue = lLeft - lRight; in Evaluate()
640 *plValue = lLeft * lRight; in Evaluate()
642 *plValue = lLeft >> lRight; in Evaluate()
644 *plValue = lLeft << lRight; in Evaluate()
646 if( 0L == lRight ) in Evaluate()
648 *plValue = lLeft / lRight; in Evaluate()