/php-src/ext/pdo/ |
H A D | pdo.c | 222 char *new_val = (char *) emalloc(vlen - n_semicolumns + 1); in php_pdo_parse_data_source() local 224 parsed[j].optval = new_val; in php_pdo_parse_data_source() 227 *new_val = *orig_val; in php_pdo_parse_data_source() 228 new_val++; in php_pdo_parse_data_source() 238 *new_val = '\0'; in php_pdo_parse_data_source()
|
/php-src/ext/intl/tests/ |
H A D | collator_get_set_strength.phpt | 19 $new_val = ut_coll_get_strength( $coll ); 20 return ( $new_val == $val ? "ok" : "failed" ) . "\n";
|
H A D | formatter_get_set_text_attribute_var2.phpt | 35 list( $attr, $new_val, $test_number ) = $data; 50 $res_val = ut_nfmt_set_text_attribute( $fmt, $attr, $new_val ); 60 if( $new_val !== $new_val_check )
|
H A D | formatter_get_set_symbol2.phpt | 45 list( $symb, $new_val, $number, $attr ) = $data; 56 $res_val = ut_nfmt_set_symbol( $fmt, $symb, $new_val ); 68 if( $new_val_check !== $new_val )
|
/php-src/ext/pgsql/ |
H A D | pgsql.c | 4804 if (!err && Z_TYPE(new_val) == IS_STRING && zend_string_equals_literal(Z_STR(new_val), "NULL")) { \ 4807 zval_ptr_dtor(&new_val); \ 4845 ZVAL_NULL(&new_val); in php_pgsql_convert() 4972 convert_to_long(&new_val); in php_pgsql_convert() 4976 ZVAL_LONG(&new_val, Z_LVAL_P(val)); in php_pgsql_convert() 5017 ZVAL_LONG(&new_val, Z_LVAL_P(val)); in php_pgsql_convert() 5082 convert_to_string(&new_val); in php_pgsql_convert() 5113 convert_to_long(&new_val); in php_pgsql_convert() 5120 convert_to_long(&new_val); in php_pgsql_convert() 5342 convert_to_string(&new_val); in php_pgsql_convert() [all …]
|
/php-src/ext/intl/collator/ |
H A D | collator_convert.c | 41 UChar* new_val = NULL; in collator_convert_hash_item_from_utf8_to_utf16() local 53 intl_convert_utf8_to_utf16( &new_val, &new_val_len, old_val, old_val_len, status ); in collator_convert_hash_item_from_utf8_to_utf16() 58 ZVAL_STRINGL( &znew_val, (char*)new_val, UBYTES(new_val_len + 1) ); in collator_convert_hash_item_from_utf8_to_utf16() 60 efree(new_val); in collator_convert_hash_item_from_utf8_to_utf16()
|
/php-src/ext/opcache/jit/ |
H A D | zend_jit.h | 161 int zend_jit_debug_config(zend_long old_val, zend_long new_val, int stage);
|
H A D | zend_jit.c | 3587 int zend_jit_debug_config(zend_long old_val, zend_long new_val, int stage) in zend_jit_debug_config() argument 3590 if (((old_val ^ new_val) & ZEND_JIT_DEBUG_PERSISTENT) != 0) { in zend_jit_debug_config()
|
/php-src/win32/build/ |
H A D | confutils.js | 2451 var new_val = val; 2456 new_val = new_val.replace(r[0], repl); 2458 val = new_val; 2473 new_val = ""; 2475 new_val += extract_convert_style_line(val, "/I", "-I", true); 2476 new_val += extract_convert_style_line(val, "/D", "-D", false); 2478 val = new_val; 2484 new_val = ""; 2486 new_val += extract_convert_style_line(val, "/I", "-I", true); 2487 new_val += extract_convert_style_line(val, "/D", "-D", false); [all …]
|
/php-src/sapi/litespeed/ |
H A D | lsapi_main.c | 205 char * new_val = (char *) pValue; in add_variable() local 208 if (sapi_module.input_filter(filter_arg, (char *)pKey, &new_val, valLen, &new_val_len)) { in add_variable() 209 php_register_variable_safe((char *)pKey, new_val, new_val_len, (zval *)arg ); in add_variable()
|
/php-src/ext/opcache/jit/ir/ |
H A D | ir_sccp.c | 1037 ir_val new_val; in ir_ext_const() local 1046 new_val.i64 = (int64_t)val_insn->val.i8; in ir_ext_const() 1048 new_val.u64 = (uint64_t)val_insn->val.u8; in ir_ext_const() 1054 new_val.i64 = (int64_t)val_insn->val.i16; in ir_ext_const() 1056 new_val.u64 = (uint64_t)val_insn->val.u16; in ir_ext_const() 1062 new_val.i64 = (int64_t)val_insn->val.i32; in ir_ext_const() 1064 new_val.u64 = (uint64_t)val_insn->val.u32; in ir_ext_const() 1068 return ir_const(ctx, new_val, type); in ir_ext_const()
|
/php-src/Zend/ |
H A D | zend_builtin_functions.c | 486 zval *new_val, *val; in copy_constant_array() local 493 new_val = zend_hash_add_new(Z_ARRVAL_P(dst), key, val); in copy_constant_array() 495 new_val = zend_hash_index_add_new(Z_ARRVAL_P(dst), idx, val); in copy_constant_array() 499 copy_constant_array(new_val, val); in copy_constant_array()
|
/php-src/ext/standard/ |
H A D | array.c | 4405 new_val; /* New value */ local 4435 ZVAL_STR_COPY(&new_val, str_idx); 4437 ZVAL_LONG(&new_val, num_idx); 4439 zend_hash_next_index_insert_new(Z_ARRVAL_P(return_value), &new_val); 4446 ZVAL_STR_COPY(&new_val, str_idx); 4448 ZVAL_LONG(&new_val, num_idx); 4450 zend_hash_next_index_insert_new(Z_ARRVAL_P(return_value), &new_val);
|
/php-src/sapi/cli/ |
H A D | php_cli_server.c | 613 char *new_val = (char *)val; in sapi_cli_server_register_variable() local 620 if (sapi_module.input_filter(PARSE_SERVER, (char*)key, &new_val, strlen(val), &new_val_len)) { in sapi_cli_server_register_variable() 621 php_register_variable_safe((char *)key, new_val, new_val_len, track_vars_array); in sapi_cli_server_register_variable()
|