Lines Matching refs:op2
499 static void shift_operator_helper(gmp_binary_ui_op_t op, zval *return_value, zval *op1, zval *op2 T… in shift_operator_helper()
501 if (Z_TYPE_P(op2) != IS_LONG) { in shift_operator_helper()
502 op2_copy = *op2; in shift_operator_helper()
505 op2 = &op2_copy; in shift_operator_helper()
508 if (Z_LVAL_P(op2) < 0) { in shift_operator_helper()
517 op(gmpnum_result, gmpnum_op, (unsigned long) Z_LVAL_P(op2)); in shift_operator_helper()
524 result, op1, op2, op, (gmp_binary_ui_op_t) uop, \
536 static int gmp_do_operation_ex(zend_uchar opcode, zval *result, zval *op1, zval *op2 TSRMLS_DC) /* … in gmp_do_operation_ex()
546 shift_operator_helper(mpz_pow_ui, result, op1, op2 TSRMLS_CC); in gmp_do_operation_ex()
553 shift_operator_helper(mpz_mul_2exp, result, op1, op2 TSRMLS_CC); in gmp_do_operation_ex()
556 shift_operator_helper(mpz_fdiv_q_2exp, result, op1, op2 TSRMLS_CC); in gmp_do_operation_ex()
573 static int gmp_do_operation(zend_uchar opcode, zval *result, zval *op1, zval *op2 TSRMLS_DC) /* {{{… in gmp_do_operation()
583 retval = gmp_do_operation_ex(opcode, result, op1, op2 TSRMLS_CC); in gmp_do_operation()
593 static int gmp_compare(zval *result, zval *op1, zval *op2 TSRMLS_DC) /* {{{ */ in gmp_compare()
595 gmp_cmp(result, op1, op2 TSRMLS_CC); in gmp_compare()