Searched refs:new_val (Results 1 - 9 of 9) sorted by relevance
| /PHP_TRUNK/ext/intl/collator/ |
| H A D | collator_convert.c | 49 UChar* new_val = NULL; local 64 /* Convert it from UTF-8 to UTF-16LE and save the result to new_val[_len]. */ 65 intl_convert_utf8_to_utf16( &new_val, &new_val_len, old_val, old_val_len, status ); 71 ZVAL_STRINGL( znew_val, (char*)new_val, UBYTES(new_val_len), FALSE ); 93 char* new_val = NULL; local 108 /* Convert it from UTF-16LE to UTF-8 and save the result to new_val[_len]. */ 109 intl_convert_utf16_to_utf8( &new_val, &new_val_len, 116 ZVAL_STRINGL( znew_val, (char*)new_val, new_val_len, FALSE );
|
| /PHP_TRUNK/ext/mbstring/oniguruma/ |
| H A D | regcomp.c | 1781 map[en->regnum].new_val = *counter; 1821 n = map[backs[i]].new_val; 1903 map[i].new_val = 0; 1913 if (map[i].new_val > 0) { 1923 BIT_STATUS_ON_AT_SIMPLE(env->capture_history, map[i].new_val);
|
| H A D | regparse.c | 539 e->back_refs[i] = map[e->back_refs[i]].new_val; 543 e->back_ref1 = map[e->back_ref1].new_val;
|
| H A D | regparse.h | 318 int new_val; member in struct:__anon275
|
| /PHP_TRUNK/ext/pdo/ |
| H A D | pdo.c | 281 char *new_val = (char *) emalloc(vlen - n_semicolumns + 1); local 283 parsed[j].optval = new_val; 286 *new_val = *orig_val; 287 new_val++; 297 *new_val = '\0';
|
| /PHP_TRUNK/sapi/cli/ |
| H A D | php_cli_server.c | 576 char *new_val = (char *)val; local 578 if (sapi_module.input_filter(PARSE_SERVER, (char*)key, &new_val, strlen(val), &new_val_len TSRMLS_CC)) { 579 php_register_variable_safe((char *)key, new_val, new_val_len, track_vars_array TSRMLS_CC);
|
| /PHP_TRUNK/ext/standard/ |
| H A D | array.c | 2413 *new_val; /* New value */ local 2444 MAKE_STD_ZVAL(new_val); 2445 zend_hash_get_current_key_zval_ex(Z_ARRVAL_P(input), new_val, &pos); local 2446 zend_hash_next_index_insert(Z_ARRVAL_P(return_value), &new_val, sizeof(zval *), NULL); local
|
| /PHP_TRUNK/ext/pgsql/ |
| H A D | pgsql.c | 5256 if (!err && Z_TYPE_P(new_val) == IS_STRING && !strcmp(Z_STRVAL_P(new_val), "NULL")) { \ 5259 zval_dtor(new_val); \ 5260 FREE_ZVAL(new_val); \ 5279 zval *meta, **def, **type, **not_null, **has_default, **is_enum, **val, *new_val; local 5302 new_val = NULL; 5345 ALLOC_INIT_ZVAL(new_val); 5361 ZVAL_STRING(new_val, "NULL", 1); 5369 ZVAL_STRING(new_val, "'t'", 1); 5376 ZVAL_STRING(new_val, "' [all...] |
| /PHP_TRUNK/Zend/ |
| H A D | zend_execute_API.c | 562 zval **element, *new_val; local 625 ALLOC_ZVAL(new_val); 626 *new_val = **element; 627 zval_copy_ctor(new_val); 628 Z_SET_REFCOUNT_P(new_val, 1); 629 Z_UNSET_ISREF_P(new_val); 634 *element = new_val;
|
Completed in 44 milliseconds