Lines Matching refs:op2
579 $op2 = $stack->pop();
580 if ( is_null( $op2 ) ) {
589 $stack->push( $op1 + $op2 );
592 $stack->push( $op1 - $op2 );
595 $stack->push( $op1 * $op2 );
598 if ( 0 === $op2 || '0' === $op2 ) {
601 $stack->push( $op1 / $op2 );
604 $stack->push( pow( $op1, $op2 ) );
607 $stack->push( (int) ( $op1 > $op2 ) );
610 $stack->push( (int) ( $op1 < $op2 ) );
614 …$stack->push( (int) ( $op1 == $op2 ) ); // Don't use === as the variable type can differ (int/doub…
1015 * @param double|int $op2 Second number (divisor).
1018 public static function mod( $op1, $op2 ) { argument
1019 return $op1 % $op2;
1056 * @param double|int $op2 Second number.
1059 public static function atan2( $op1, $op2 ) { argument
1060 return atan2( $op1, $op2 );