Home
last modified time | relevance | path

Searched refs:op1 (Results 1 – 20 of 20) sorted by relevance

/PHP-5.4/Zend/
H A Dzend_operators.c1023 op1 = &op1_copy; in bitwise_not_function()
1058 longer = op1; in bitwise_or_function()
1062 shorter = op1; in bitwise_or_function()
1098 longer = op1; in bitwise_and_function()
1140 longer = op1; in bitwise_xor_function()
1204 memcpy(buf, Z_STRVAL_P(op1), Z_STRLEN_P(op1)); in add_char_to_string()
1223 memcpy(buf, Z_STRVAL_P(op1), Z_STRLEN_P(op1)); in add_string_to_string()
1281 memcpy(buf, Z_STRVAL_P(op1), Z_STRLEN_P(op1)); in concat_function()
1495 op_free = Z_OBJ_HT_P(op1)->get(op1 TSRMLS_CC); in compare_function()
1812 Z_DVAL_P(op1) = Z_DVAL_P(op1) + 1; in increment_function()
[all …]
H A Dzend_operators.h489 : "r"(op1)); in fast_increment_function()
499 : "r"(op1)); in fast_increment_function()
504 Z_TYPE_P(op1) = IS_DOUBLE; in fast_increment_function()
506 Z_LVAL_P(op1)++; in fast_increment_function()
526 : "r"(op1)); in fast_decrement_function()
536 : "r"(op1)); in fast_decrement_function()
543 Z_LVAL_P(op1)--; in fast_decrement_function()
572 "r"(op1), in fast_add_function()
592 "r"(op1), in fast_add_function()
656 "r"(op1), in fast_sub_function()
[all …]
H A Dzend_vm_gen.php296 $op1 = "ANY";
351 $op1_type[$op1],
353 $op1_free[$op1],
355 $op1_get_zval_ptr[$op1],
363 $op1_is_tmp_free[$op1],
365 $op1_free_op[$op1],
562 if ($op1 != "ANY") {
588 foreach($op1t as $op1) {
589 if ($op1 != "ANY") {
592 $op1 = "ANY";
[all …]
H A Dzend_vm_execute.h2961 opline->op1.zv, in ZEND_ADD_SPEC_CONST_CONST_HANDLER()
2976 opline->op1.zv, in ZEND_SUB_SPEC_CONST_CONST_HANDLER()
2991 opline->op1.zv, in ZEND_MUL_SPEC_CONST_CONST_HANDLER()
3006 opline->op1.zv, in ZEND_DIV_SPEC_CONST_CONST_HANDLER()
3021 opline->op1.zv, in ZEND_MOD_SPEC_CONST_CONST_HANDLER()
3036 opline->op1.zv, in ZEND_SL_SPEC_CONST_CONST_HANDLER()
3051 opline->op1.zv, in ZEND_SR_SPEC_CONST_CONST_HANDLER()
3066 opline->op1.zv, in ZEND_CONCAT_SPEC_CONST_CONST_HANDLER()
3081 opline->op1.zv, in ZEND_IS_IDENTICAL_SPEC_CONST_CONST_HANDLER()
3097 opline->op1.zv, in ZEND_IS_NOT_IDENTICAL_SPEC_CONST_CONST_HANDLER()
[all …]
H A Dzend_compile.c580 SET_NODE(opline->op1, op1); in zend_do_binary_op()
593 SET_NODE(opline->op1, op1); in zend_do_unary_op()
642 SET_NODE(opline->op1, op1); in zend_do_binary_assign_op()
1186 SET_NODE(opline->op1, op1); in zend_do_pre_incdec()
1213 SET_NODE(opline->op1, op1); in zend_do_post_incdec()
1412 SET_NODE(opline->op1, op1); in zend_do_add_string()
1431 SET_NODE(opline->op1, op1); in zend_do_add_variable()
1449 SET_NODE(opline->op1, op1); in zend_do_free()
4245 op1 = opline->op1.zv; in do_bind_function()
4351 op1 = opline->op1.zv; in do_bind_class()
[all …]
H A Dzend_ini_parser.y48 static void zend_ini_do_op(char type, zval *result, zval *op1, zval *op2) in zend_ini_do_op() argument
54 i_op1 = atoi(Z_STRVAL_P(op1)); in zend_ini_do_op()
55 free(Z_STRVAL_P(op1)); in zend_ini_do_op()
102 static void zend_ini_add_string(zval *result, zval *op1, zval *op2) in zend_ini_add_string() argument
104 int length = Z_STRLEN_P(op1) + Z_STRLEN_P(op2); in zend_ini_add_string()
106 Z_STRVAL_P(result) = (char *) realloc(Z_STRVAL_P(op1), length+1); in zend_ini_add_string()
107 memcpy(Z_STRVAL_P(result)+Z_STRLEN_P(op1), Z_STRVAL_P(op2), Z_STRLEN_P(op2)); in zend_ini_add_string()
H A Dzend_vm_def.h1389 EX_T(opline->op1.var).var.ptr = *EX_T(opline->op1.var).var.ptr_ptr;
2233 …ce = zend_fetch_class_by_name(Z_STRVAL_P(opline->op1.zv), Z_STRLEN_P(opline->op1.zv), opline->op1.…
2912 } else if (EX_T(opline->op1.var).var.ptr_ptr == &EX_T(opline->op1.var).var.ptr) {
2981 …ch_ce = zend_fetch_class_by_name(Z_STRVAL_P(opline->op1.zv), Z_STRLEN_P(opline->op1.zv), opline->o…
3099 EX_T(opline->op1.var).var.ptr) {
3509 …ce = zend_fetch_class_by_name(Z_STRVAL_P(opline->op1.zv), Z_STRLEN_P(opline->op1.zv), opline->op1.…
3873 EX_CV(opline->op1.var) = NULL;
3876 EX_CV(opline->op1.var) = NULL;
4372 if (EX_CV(opline->op1.var)) {
4373 value = EX_CV(opline->op1.var);
[all …]
H A Dzend_compile.h108 znode_op op1; member
430 void zend_do_binary_op(zend_uchar op, znode *result, const znode *op1, const znode *op2 TSRMLS_DC);
431 void zend_do_unary_op(zend_uchar op, znode *result, const znode *op1 TSRMLS_DC);
432 void zend_do_binary_assign_op(zend_uchar op, znode *result, const znode *op1, const znode *op2 TSRM…
466 void zend_do_pre_incdec(znode *result, const znode *op1, zend_uchar op TSRMLS_DC);
467 void zend_do_post_incdec(znode *result, const znode *op1, zend_uchar op TSRMLS_DC);
474 void zend_do_free(znode *op1 TSRMLS_DC);
476 void zend_do_add_string(znode *result, const znode *op1, znode *op2 TSRMLS_DC);
477 void zend_do_add_variable(znode *result, const znode *op1, const znode *op2 TSRMLS_DC);
573 void zend_do_include_or_eval(int type, znode *result, const znode *op1 TSRMLS_DC);
H A Dzend_opcode.c514 opline->op1.zv = &op_array->literals[opline->op1.constant].constant; in pass_two()
526 opline->op1.jmp_addr = &op_array->opcodes[opline->op1.opline_num]; in pass_two()
H A Dzend_execute_API.c1283 …ret_opline->op1.constant = zend_add_literal(CG(active_op_array), &EG(uninitialized_zval) TSRMLS_CC… in execute_new_code()
1295 opline->op1.zv = &CG(active_op_array)->literals[opline->op1.constant].constant; in execute_new_code()
1307 opline->op1.jmp_addr = &CG(active_op_array)->opcodes[opline->op1.opline_num]; in execute_new_code()
H A Dzend_execute.c1428 zval_ptr_dtor(&T(brk_opline->op1.var).var.ptr); in zend_brk_cont()
1433 zendi_zval_dtor(T(brk_opline->op1.var).tmp_var); in zend_brk_cont()
/PHP-5.4/Zend/tests/
H A Dbug37046.phpt11 echo "op1 $k\n";
20 op1 0
23 op1 1
/PHP-5.4/ext/intl/collator/
H A Dcollator_sort.c53 static int collator_regular_compare_function(zval *result, zval *op1, zval *op2 TSRMLS_DC) in collator_regular_compare_function() argument
59 zval* str1 = collator_convert_object_to_string( op1 TSRMLS_CC ); in collator_regular_compare_function()
147 static int collator_numeric_compare_function(zval *result, zval *op1, zval *op2 TSRMLS_DC) in collator_numeric_compare_function() argument
153 if( Z_TYPE_P(op1) == IS_STRING ) in collator_numeric_compare_function()
155 num1 = collator_convert_string_to_double( op1 ); in collator_numeric_compare_function()
156 op1 = num1; in collator_numeric_compare_function()
165 rc = numeric_compare_function( result, op1, op2 TSRMLS_CC); in collator_numeric_compare_function()
179 static int collator_icu_compare_function(zval *result, zval *op1, zval *op2 TSRMLS_DC) in collator_icu_compare_function() argument
186 str1 = collator_make_printable_zval( op1 ); in collator_icu_compare_function()
H A Dcollator_sort.h23 typedef int (*collator_compare_func_t)( zval *result, zval *op1, zval *op2 TSRMLS_DC );
/PHP-5.4/ext/standard/
H A Dphp_string.h146 PHPAPI int string_natural_compare_function_ex(zval *result, zval *op1, zval *op2, zend_bool case_in…
147 PHPAPI int string_natural_compare_function(zval *result, zval *op1, zval *op2 TSRMLS_DC);
148 PHPAPI int string_natural_case_compare_function(zval *result, zval *op1, zval *op2 TSRMLS_DC);
H A Dphp_array.h121 int (*compare_func)(zval *result, zval *op1, zval *op2 TSRMLS_DC);
H A Dstring.c5067 PHPAPI int string_natural_compare_function_ex(zval *result, zval *op1, zval *op2, zend_bool case_in… argument
5072 if (Z_TYPE_P(op1) != IS_STRING) {
5073 zend_make_printable_zval(op1, &op1_copy, &use_copy1);
5080 op1 = &op1_copy;
5086 …ZVAL_LONG(result, strnatcmp_ex(Z_STRVAL_P(op1), Z_STRLEN_P(op1), Z_STRVAL_P(op2), Z_STRLEN_P(op2),…
5089 zval_dtor(op1);
5098 PHPAPI int string_natural_case_compare_function(zval *result, zval *op1, zval *op2 TSRMLS_DC) /* {{… argument
5100 return string_natural_compare_function_ex(result, op1, op2, 1 TSRMLS_CC);
5104 PHPAPI int string_natural_compare_function(zval *result, zval *op1, zval *op2 TSRMLS_DC) /* {{{ */ argument
5106 return string_natural_compare_function_ex(result, op1, op2, 0 TSRMLS_CC);
/PHP-5.4/ext/pcre/pcrelib/sljit/
H A DsljitNativeTILEGX_64.c754 inst_buf[inst_buf_index].operand_value[1] = op1; in push_4_buffer()
757 inst_buf[inst_buf_index].input_registers = 1L << op1; in push_4_buffer()
774 inst_buf[inst_buf_index].operand_value[1] = op1; in push_3_buffer()
780 inst_buf[inst_buf_index].input_registers = (1L << op0) | (1L << op1); in push_3_buffer()
784 inst_buf[inst_buf_index].input_registers = 1L << op1; in push_3_buffer()
785 inst_buf[inst_buf_index].output_registers = (1L << op0) | (1L << op1); in push_3_buffer()
800 inst_buf[inst_buf_index].input_registers = (1L << op1) | (1L << op2); in push_3_buffer()
812 inst_buf[inst_buf_index].input_registers = 1L << op1; in push_3_buffer()
834 inst_buf[inst_buf_index].operand_value[1] = op1; in push_2_buffer()
846 inst_buf[inst_buf_index].input_registers = (1L << op0) | (1L << op1); in push_2_buffer()
[all …]
/PHP-5.4/
H A D.gdbinit570 usage: printzn &opline->op1
574 printf "op1 => "
575 printzn &execute_data->opline.op1
/PHP-5.4/ext/reflection/
H A Dphp_reflection.c685 && op->op1.num == (long)offset) in _get_recv_op()

Completed in 192 milliseconds