Searched refs:op2_len (Results 1 – 2 of 2) sorted by relevance
1635 size_t op2_len = Z_STRLEN_P(op2); in zend_jit_fast_assign_concat_helper() local1636 size_t result_len = op1_len + op2_len; in zend_jit_fast_assign_concat_helper()1640 if (UNEXPECTED(op1_len > SIZE_MAX - op2_len)) { in zend_jit_fast_assign_concat_helper()1664 memcpy(ZSTR_VAL(result_str) + op1_len, Z_STRVAL_P(op2), op2_len); in zend_jit_fast_assign_concat_helper()1671 size_t op2_len = Z_STRLEN_P(op2); in zend_jit_fast_concat_helper() local1672 size_t result_len = op1_len + op2_len; in zend_jit_fast_concat_helper()1676 if (UNEXPECTED(op1_len > SIZE_MAX - op2_len)) { in zend_jit_fast_concat_helper()1687 memcpy(ZSTR_VAL(result_str) + op1_len, Z_STRVAL_P(op2), op2_len); in zend_jit_fast_concat_helper()1695 size_t op2_len = Z_STRLEN_P(op2); in zend_jit_fast_concat_tmp_helper() local1696 size_t result_len = op1_len + op2_len; in zend_jit_fast_concat_tmp_helper()[all …]
2056 size_t op2_len = ZSTR_LEN(op2_string); in concat_function() local2057 size_t result_len = op1_len + op2_len; in concat_function()2061 if (UNEXPECTED(op1_len > ZSTR_MAX_LEN - op2_len)) { in concat_function()2101 memcpy(ZSTR_VAL(result_str) + op1_len, ZSTR_VAL(op2_string), op2_len); in concat_function()
Completed in 25 milliseconds