Home
last modified time | relevance | path

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

/PHP-7.1/Zend/
H A Dzend_ini_parser.y119 int length, op1_len; in zend_ini_add_string() local
131 op1_len = (int)Z_STRLEN_P(op1); in zend_ini_add_string()
136 length = op1_len + (int)Z_STRLEN_P(op2); in zend_ini_add_string()
139 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.c1740 size_t op1_len = Z_STRLEN_P(op1); in concat_function() local
1742 size_t result_len = op1_len + op2_len; in concat_function()
1745 if (UNEXPECTED(op1_len > SIZE_MAX - op2_len)) { in concat_function()
1764 memcpy(ZSTR_VAL(result_str), Z_STRVAL_P(op1), op1_len); in concat_function()
1775 memcpy(ZSTR_VAL(result_str) + op1_len, Z_STRVAL_P(op2), op2_len); in concat_function()

Completed in 22 milliseconds