Home
last modified time | relevance | path

Searched refs:result_str (Results 1 – 4 of 4) sorted by relevance

/php-src/ext/opcache/jit/
H A Dzend_jit_helpers.c1644 zend_string *result_str; in zend_jit_fast_assign_concat_helper() local
1659 ZVAL_NEW_STR(op2, result_str); in zend_jit_fast_assign_concat_helper()
1669 GC_ADD_FLAGS(result_str, flags); in zend_jit_fast_assign_concat_helper()
1670 ZVAL_NEW_STR(op1, result_str); in zend_jit_fast_assign_concat_helper()
1680 zend_string *result_str; in zend_jit_fast_concat_helper() local
1689 GC_ADD_FLAGS(result_str, flags); in zend_jit_fast_concat_helper()
1692 ZVAL_NEW_STR(result, result_str); in zend_jit_fast_concat_helper()
1704 zend_string *result_str; in zend_jit_fast_concat_tmp_helper() local
1715 Z_STR_P(op1) = result_str = in zend_jit_fast_concat_tmp_helper()
1727 GC_ADD_FLAGS(result_str, flags); in zend_jit_fast_concat_tmp_helper()
[all …]
/php-src/ext/intl/locale/
H A Dlocale_methods.c1541 zend_string* result_str = NULL; in PHP_FUNCTION() local
1568 result_str = lookup_loc_range(loc_range, hash_arr, boolCanonical); in PHP_FUNCTION()
1569 if(result_str == NULL || ZSTR_VAL(result_str)[0] == '\0') { in PHP_FUNCTION()
1571 result_str = zend_string_copy(fallback_loc_str); in PHP_FUNCTION()
1577 RETURN_STR(result_str); in PHP_FUNCTION()
/php-src/Zend/
H A Dzend_operators.c2046 zend_string *result_str; in concat_function() local
2070 result_str = zend_string_extend(op1_string, result_len, 0); in concat_function()
2077 op2_string = result_str; in concat_function()
2080 result_str = zend_string_alloc(result_len, 0); in concat_function()
2081 memcpy(ZSTR_VAL(result_str), ZSTR_VAL(op1_string), op1_len); in concat_function()
2086 GC_ADD_FLAGS(result_str, flags); in concat_function()
2088 ZVAL_NEW_STR(result, result_str); in concat_function()
2089 memcpy(ZSTR_VAL(result_str) + op1_len, ZSTR_VAL(op2_string), op2_len); in concat_function()
2090 ZSTR_VAL(result_str)[result_len] = '\0'; in concat_function() local
/php-src/ext/pcre/
H A Dphp_pcre.c1543 zend_string *result_str; in preg_do_repl_func() local
1556 result_str = Z_STR(retval); in preg_do_repl_func()
1558 result_str = zval_get_string_func(&retval); in preg_do_repl_func()
1566 result_str = zend_string_init(&subject[offsets[0]], offsets[1] - offsets[0], 0); in preg_do_repl_func()
1571 return result_str; in preg_do_repl_func()

Completed in 42 milliseconds