Searched refs:op2_len (Results 1 – 2 of 2) sorted by relevance
1574 size_t op2_len = Z_STRLEN_P(op2); in zend_jit_fast_assign_concat_helper() local1575 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() local1609 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()
1881 size_t op2_len = Z_STRLEN_P(op2); in concat_function() local1882 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 28 milliseconds