Lines Matching refs:op1
515 $op1 = $stack->pop();
516 if ( is_null( $op1 ) ) {
583 $op1 = $stack->pop();
584 if ( is_null( $op1 ) ) {
589 $stack->push( $op1 + $op2 );
592 $stack->push( $op1 - $op2 );
595 $stack->push( $op1 * $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…
1014 * @param double|int $op1 First number (dividend).
1018 public static function mod( $op1, $op2 ) { argument
1019 return $op1 % $op2;
1055 * @param double|int $op1 First number.
1059 public static function atan2( $op1, $op2 ) { argument
1060 return atan2( $op1, $op2 );