Home
last modified time | relevance | path

Searched refs:op1_len (Results 1 – 3 of 3) sorted by relevance

/PHP-8.2/Zend/
H A Dzend_ini_parser.y120 int length, op1_len; in zend_ini_add_string() local
133 op1_len = (int)Z_STRLEN_P(op1); in zend_ini_add_string()
138 length = op1_len + (int)Z_STRLEN_P(op2); in zend_ini_add_string()
141 memcpy(Z_STRVAL_P(result) + op1_len, Z_STRVAL_P(op2), Z_STRLEN_P(op2) + 1); in zend_ini_add_string()
H A Dzend_operators.c2043 size_t op1_len = ZSTR_LEN(op1_string); in concat_function() local
2045 size_t result_len = op1_len + op2_len; in concat_function()
2049 if (UNEXPECTED(op1_len > ZSTR_MAX_LEN - op2_len)) { in concat_function()
2081 memcpy(ZSTR_VAL(result_str), ZSTR_VAL(op1_string), op1_len); in concat_function()
2089 memcpy(ZSTR_VAL(result_str) + op1_len, ZSTR_VAL(op2_string), op2_len); in concat_function()
/PHP-8.2/ext/opcache/jit/
H A Dzend_jit_helpers.c1641 size_t op1_len = Z_STRLEN_P(op1); in zend_jit_fast_assign_concat_helper() local
1643 size_t result_len = op1_len + op2_len; in zend_jit_fast_assign_concat_helper()
1647 if (UNEXPECTED(op1_len > SIZE_MAX - op2_len)) { in zend_jit_fast_assign_concat_helper()
1666 memcpy(ZSTR_VAL(result_str), Z_STRVAL_P(op1), op1_len); in zend_jit_fast_assign_concat_helper()
1677 size_t op1_len = Z_STRLEN_P(op1); in zend_jit_fast_concat_helper() local
1679 size_t result_len = op1_len + op2_len; in zend_jit_fast_concat_helper()
1683 if (UNEXPECTED(op1_len > SIZE_MAX - op2_len)) { in zend_jit_fast_concat_helper()
1690 memcpy(ZSTR_VAL(result_str), Z_STRVAL_P(op1), op1_len); in zend_jit_fast_concat_helper()
1701 size_t op1_len = ZSTR_LEN(op1_str); in zend_jit_fast_concat_tmp_helper() local
1703 size_t result_len = op1_len + op2_len; in zend_jit_fast_concat_tmp_helper()
[all …]

Completed in 37 milliseconds