Home
last modified time | relevance | path

Searched refs:new_val (Results 1 – 13 of 13) sorted by relevance

/PHP-5.3/ext/intl/tests/
H A Dcollator_get_set_strength.phpt19 $new_val = ut_coll_get_strength( $coll );
20 return ( $new_val == $val ? "ok" : "failed" ) . "\n";
H A Dformatter_get_set_text_attribute.phpt35 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 Dformatter_get_set_attribute.phpt46 list( $attr, $new_val, $number ) = $args;
63 $rc = ut_nfmt_set_attribute( $fmt, $attr, $new_val );
72 // Get current value of the attribute and check if it equals $new_val.
74 if( $attr_val_check !== $new_val )
80 dump( $new_val ),
H A Dformatter_get_set_symbol.phpt44 list( $symb, $new_val, $number, $attr ) = $data;
55 $res_val = ut_nfmt_set_symbol( $fmt, $symb, $new_val );
67 if( $new_val_check !== $new_val )
H A Dformatter_get_set_symbol2.phpt44 list( $symb, $new_val, $number, $attr ) = $data;
55 $res_val = ut_nfmt_set_symbol( $fmt, $symb, $new_val );
67 if( $new_val_check !== $new_val )
/PHP-5.3/ext/intl/collator/
H A Dcollator_convert.c49 UChar* new_val = NULL; in collator_convert_hash_item_from_utf8_to_utf16() local
65 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()
71 ZVAL_STRINGL( znew_val, (char*)new_val, UBYTES(new_val_len), FALSE ); in collator_convert_hash_item_from_utf8_to_utf16()
93 char* new_val = NULL; in collator_convert_hash_item_from_utf16_to_utf8() local
109 intl_convert_utf16_to_utf8( &new_val, &new_val_len, in collator_convert_hash_item_from_utf16_to_utf8()
116 ZVAL_STRINGL( znew_val, (char*)new_val, new_val_len, FALSE ); in collator_convert_hash_item_from_utf16_to_utf8()
/PHP-5.3/ext/pdo/
H A Dpdo.c281 char *new_val = (char *) emalloc(vlen - n_semicolumns + 1); in php_pdo_parse_data_source() local
283 parsed[j].optval = new_val; in php_pdo_parse_data_source()
286 *new_val = *orig_val; in php_pdo_parse_data_source()
287 new_val++; in php_pdo_parse_data_source()
297 *new_val = '\0'; in php_pdo_parse_data_source()
/PHP-5.3/ext/pgsql/
H A Dpgsql.c5133 if (!err && Z_TYPE_P(new_val) == IS_STRING && !strcmp(Z_STRVAL_P(new_val), "NULL")) { \
5136 zval_dtor(new_val); \
5137 FREE_ZVAL(new_val); \
5179 new_val = NULL;
5222 ALLOC_INIT_ZVAL(new_val);
5307 convert_to_long_ex(&new_val);
5381 Z_TYPE_P(new_val) = IS_STRING;
5387 Z_STRVAL_P(new_val) = tmp;
5441 convert_to_long_ex(&new_val);
5768 zval_dtor(new_val);
[all …]
/PHP-5.3/Zend/
H A Dzend_execute_API.c592 zval **element, *new_val; in zval_update_constant_ex() local
654 ALLOC_ZVAL(new_val); in zval_update_constant_ex()
655 *new_val = **element; in zval_update_constant_ex()
656 zval_copy_ctor(new_val); in zval_update_constant_ex()
657 Z_SET_REFCOUNT_P(new_val, 1); in zval_update_constant_ex()
658 Z_UNSET_ISREF_P(new_val); in zval_update_constant_ex()
663 *element = new_val; in zval_update_constant_ex()
/PHP-5.3/ext/mbstring/oniguruma/
H A Dregparse.h300 int new_val; member
H A Dregcomp.c1759 map[en->regnum].new_val = *counter; in noname_disable_map()
1799 n = map[backs[i]].new_val; in renumber_node_backref()
1881 map[i].new_val = 0; in disable_noname_group_capture()
1891 if (map[i].new_val > 0) { in disable_noname_group_capture()
1901 BIT_STATUS_ON_AT_SIMPLE(env->capture_history, map[i].new_val); in disable_noname_group_capture()
H A Dregparse.c545 e->back_refs[i] = map[e->back_refs[i]].new_val; in i_renumber_name()
549 e->back_ref1 = map[e->back_ref1].new_val; in i_renumber_name()
/PHP-5.3/ext/standard/
H A Darray.c2438 *new_val; /* New value */ in PHP_FUNCTION() local
2472 MAKE_STD_ZVAL(new_val); in PHP_FUNCTION()
2476 ZVAL_STRINGL(new_val, string_key, string_key_len - 1, 0); in PHP_FUNCTION()
2477 zend_hash_next_index_insert(Z_ARRVAL_P(return_value), &new_val, sizeof(zval *), NULL); in PHP_FUNCTION()
2481 Z_TYPE_P(new_val) = IS_LONG; in PHP_FUNCTION()
2482 Z_LVAL_P(new_val) = num_key; in PHP_FUNCTION()
2483 zend_hash_next_index_insert(Z_ARRVAL_P(return_value), &new_val, sizeof(zval *), NULL); in PHP_FUNCTION()

Completed in 92 milliseconds