Lines Matching refs:replace_count

1580 							  size_t limit, size_t *replace_count)  in php_pcre_replace()  argument
1596 limit, replace_count); in php_pcre_replace()
1604 …t char *subject, size_t subject_len, zend_string *replace_str, size_t limit, size_t *replace_count) in php_pcre_replace_impl() argument
1684 if (replace_count) { in php_pcre_replace_impl()
1685 ++*replace_count; in php_pcre_replace_impl()
1843 …nd_fcall_info *fci, zend_fcall_info_cache *fcc, size_t limit, size_t *replace_count, zend_long fla… in php_pcre_replace_func_impl() argument
1937 if (replace_count) { in php_pcre_replace_func_impl()
1938 ++*replace_count; in php_pcre_replace_func_impl()
2059 size_t limit, size_t *replace_count, zend_long flags) in php_pcre_replace_func() argument
2071 limit, replace_count, flags); in php_pcre_replace_func()
2081 zend_string *subject_str, size_t limit, size_t *replace_count) in php_pcre_replace_array() argument
2117 ZSTR_LEN(subject_str), replace_entry_str, limit, replace_count); in php_pcre_replace_array()
2139 ZSTR_LEN(subject_str), replace_str, limit, replace_count); in php_pcre_replace_array()
2158 zend_string *subject, size_t limit, size_t *replace_count) in php_replace_in_subject() argument
2165 replace_str, limit, replace_count); in php_replace_in_subject()
2169 limit, replace_count); in php_replace_in_subject()
2178 zend_string *subject, size_t limit, size_t *replace_count, zend_long flags) in php_replace_in_subject_func() argument
2184 regex_str, subject, fci, fcc, limit, replace_count, flags); in php_replace_in_subject_func()
2203 regex_entry_str, subject, fci, fcc, limit, replace_count, flags); in php_replace_in_subject_func()
2224 size_t replace_count = 0; in preg_replace_func_impl() local
2228 regex_str, regex_ht, fci, fcc, subject_str, limit_val, &replace_count, flags); in preg_replace_func_impl()
2252 regex_str, regex_ht, fci, fcc, subject_entry_str, limit_val, &replace_count, flags); in preg_replace_func_impl()
2266 return replace_count; in preg_replace_func_impl()
2279 size_t replace_count = 0; in _preg_replace_common() local
2290 old_replace_count = replace_count; in _preg_replace_common()
2292 subject_str, limit, &replace_count); in _preg_replace_common()
2294 if (!is_filter || replace_count > old_replace_count) { in _preg_replace_common()
2317 old_replace_count = replace_count; in _preg_replace_common()
2321 subject_entry_str, limit, &replace_count); in _preg_replace_common()
2324 if (!is_filter || replace_count > old_replace_count) { in _preg_replace_common()
2341 ZEND_TRY_ASSIGN_REF_LONG(zcount, replace_count); in _preg_replace_common()
2411 size_t replace_count; in PHP_FUNCTION() local
2426 replace_count = preg_replace_func_impl(return_value, regex_str, regex_ht, in PHP_FUNCTION()
2430 ZEND_TRY_ASSIGN_REF_LONG(zcount, replace_count); in PHP_FUNCTION()
2442 size_t replace_count = 0; in PHP_FUNCTION() local
2478 replace_count += preg_replace_func_impl(&zv, str_idx_regex, /* regex_ht */ NULL, &fci, &fcc, in PHP_FUNCTION()
2503 ZEND_TRY_ASSIGN_REF_LONG(zcount, replace_count); in PHP_FUNCTION()