Home
last modified time | relevance | path

Searched refs:op2_len (Results 1 – 2 of 2) sorted by relevance

/PHP-8.0/ext/opcache/jit/
H A Dzend_jit_helpers.c1574 size_t op2_len = Z_STRLEN_P(op2); in zend_jit_fast_assign_concat_helper() local
1575 size_t result_len = op1_len + op2_len; in zend_jit_fast_assign_concat_helper()
1578 if (UNEXPECTED(op1_len > SIZE_MAX - op2_len)) { in zend_jit_fast_assign_concat_helper()
1601 memcpy(ZSTR_VAL(result_str) + op1_len, Z_STRVAL_P(op2), op2_len); in zend_jit_fast_assign_concat_helper()
1608 size_t op2_len = Z_STRLEN_P(op2); in zend_jit_fast_concat_helper() local
1609 size_t result_len = op1_len + op2_len; in zend_jit_fast_concat_helper()
1612 if (UNEXPECTED(op1_len > SIZE_MAX - op2_len)) { in zend_jit_fast_concat_helper()
1622 memcpy(ZSTR_VAL(result_str) + op1_len, Z_STRVAL_P(op2), op2_len); in zend_jit_fast_concat_helper()
/PHP-8.0/Zend/
H A Dzend_operators.c1881 size_t op2_len = Z_STRLEN_P(op2); in concat_function() local
1882 size_t result_len = op1_len + op2_len; in concat_function()
1885 if (UNEXPECTED(op1_len > ZSTR_MAX_LEN - op2_len)) { in concat_function()
1911 memcpy(ZSTR_VAL(result_str) + op1_len, Z_STRVAL_P(op2), op2_len); in concat_function()

Completed in 25 milliseconds