Lines Matching refs:op2
46 static void donc_add(zval *result, zval *op1, zval *op2) in donc_add() argument
55 if (IS_DONC(op2)) { in donc_add()
56 val_2 = Z_LVAL_P(OBJ_PROP_NUM(Z_OBJ_P(op2), 0)); in donc_add()
58 val_2 = zval_get_long(op2); in donc_add()
63 static void donc_mul(zval *result, zval *op1, zval *op2) in donc_mul() argument
72 if (IS_DONC(op2)) { in donc_mul()
73 val_2 = Z_LVAL_P(OBJ_PROP_NUM(Z_OBJ_P(op2), 0)); in donc_mul()
75 val_2 = zval_get_long(op2); in donc_mul()
81 static zend_result donc_do_operation(zend_uchar opcode, zval *result, zval *op1, zval *op2) in donc_do_operation() argument
93 donc_add(result, op1, op2); in donc_do_operation()
98 donc_mul(result, op1, op2); in donc_do_operation()