Home
last modified time | relevance | path

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

/PHP-8.0/ext/intl/locale/
H A Dlocale_methods.c1448 zend_string* result_str = NULL; in PHP_FUNCTION() local
1475 result_str = lookup_loc_range(loc_range, hash_arr, boolCanonical); in PHP_FUNCTION()
1476 if(result_str == NULL || ZSTR_VAL(result_str)[0] == '\0') { in PHP_FUNCTION()
1478 result_str = zend_string_copy(fallback_loc_str); in PHP_FUNCTION()
1484 RETURN_STR(result_str); in PHP_FUNCTION()
/PHP-8.0/ext/opcache/jit/
H A Dzend_jit_helpers.c1576 zend_string *result_str; in zend_jit_fast_assign_concat_helper() local
1587 ZSTR_LEN(result_str) = result_len; in zend_jit_fast_assign_concat_helper()
1588 zend_string_forget_hash_val(result_str); in zend_jit_fast_assign_concat_helper()
1590 ZVAL_NEW_STR(op2, result_str); in zend_jit_fast_assign_concat_helper()
1596 result_str = zend_string_alloc(result_len, 0); in zend_jit_fast_assign_concat_helper()
1600 ZVAL_NEW_STR(op1, result_str); in zend_jit_fast_assign_concat_helper()
1602 ZSTR_VAL(result_str)[result_len] = '\0'; in zend_jit_fast_assign_concat_helper() local
1610 zend_string *result_str; in zend_jit_fast_concat_helper() local
1617 result_str = zend_string_alloc(result_len, 0); in zend_jit_fast_concat_helper()
1620 ZVAL_NEW_STR(result, result_str); in zend_jit_fast_concat_helper()
[all …]
/PHP-8.0/Zend/
H A Dzend_operators.c1883 zend_string *result_str; in concat_function() local
1897 result_str = zend_string_extend(Z_STR_P(result), result_len, 0); in concat_function()
1899 result_str = zend_string_alloc(result_len, 0); in concat_function()
1900 memcpy(ZSTR_VAL(result_str), Z_STRVAL_P(op1), op1_len); in concat_function()
1909 ZVAL_NEW_STR(result, result_str); in concat_function()
1911 memcpy(ZSTR_VAL(result_str) + op1_len, Z_STRVAL_P(op2), op2_len); in concat_function()
1912 ZSTR_VAL(result_str)[result_len] = '\0'; in concat_function() local
/PHP-8.0/ext/pcre/
H A Dphp_pcre.c1554 zend_string *result_str; in preg_do_repl_func() local
1567 result_str = Z_STR(retval); in preg_do_repl_func()
1569 result_str = zval_get_string_func(&retval); in preg_do_repl_func()
1577 result_str = zend_string_init(&subject[offsets[0]], offsets[1] - offsets[0], 0); in preg_do_repl_func()
1582 return result_str; in preg_do_repl_func()

Completed in 44 milliseconds