Home
last modified time | relevance | path

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

/PHP-8.2/ext/opcache/jit/
H A Dzend_jit_helpers.c1640 zend_string *result_str; in zend_jit_fast_assign_concat_helper() local
1651 ZSTR_LEN(result_str) = result_len; in zend_jit_fast_assign_concat_helper()
1654 ZVAL_NEW_STR(op2, result_str); in zend_jit_fast_assign_concat_helper()
1664 ZVAL_NEW_STR(op1, result_str); in zend_jit_fast_assign_concat_helper()
1666 ZSTR_VAL(result_str)[result_len] = '\0'; in zend_jit_fast_assign_concat_helper() local
1674 zend_string *result_str; in zend_jit_fast_concat_helper() local
1684 ZVAL_NEW_STR(result, result_str); in zend_jit_fast_concat_helper()
1696 zend_string *result_str; in zend_jit_fast_concat_tmp_helper() local
1706 Z_STR_P(op1) = result_str = in zend_jit_fast_concat_tmp_helper()
1708 ZSTR_LEN(result_str) = result_len; in zend_jit_fast_concat_tmp_helper()
[all …]
/PHP-8.2/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-8.2/Zend/
H A Dzend_operators.c1959 zend_string *result_str; in concat_function() local
1973 result_str = zend_string_extend(Z_STR_P(result), result_len, 0); in concat_function()
1975 result_str = zend_string_alloc(result_len, 0); in concat_function()
1976 memcpy(ZSTR_VAL(result_str), Z_STRVAL_P(op1), op1_len); in concat_function()
1985 ZVAL_NEW_STR(result, result_str); in concat_function()
1987 memcpy(ZSTR_VAL(result_str) + op1_len, Z_STRVAL_P(op2), op2_len); in concat_function()
1988 ZSTR_VAL(result_str)[result_len] = '\0'; in concat_function() local
/PHP-8.2/ext/pcre/
H A Dphp_pcre.c1538 zend_string *result_str; in preg_do_repl_func() local
1551 result_str = Z_STR(retval); in preg_do_repl_func()
1553 result_str = zval_get_string_func(&retval); in preg_do_repl_func()
1561 result_str = zend_string_init(&subject[offsets[0]], offsets[1] - offsets[0], 0); in preg_do_repl_func()
1566 return result_str; in preg_do_repl_func()

Completed in 40 milliseconds