Lines Matching refs:replace_count

1556 							  size_t limit, size_t *replace_count)  in php_pcre_replace()  argument
1572 limit, replace_count); in php_pcre_replace()
1580 …t char *subject, size_t subject_len, zend_string *replace_str, size_t limit, size_t *replace_count) in php_pcre_replace_impl() argument
1660 if (replace_count) { in php_pcre_replace_impl()
1661 ++*replace_count; in php_pcre_replace_impl()
1820 …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
1914 if (replace_count) { in php_pcre_replace_func_impl()
1915 ++*replace_count; in php_pcre_replace_func_impl()
2036 size_t limit, size_t *replace_count, zend_long flags) in php_pcre_replace_func() argument
2048 limit, replace_count, flags); in php_pcre_replace_func()
2058 zend_string *subject_str, size_t limit, size_t *replace_count) in php_pcre_replace_array() argument
2094 ZSTR_LEN(subject_str), replace_entry_str, limit, replace_count); in php_pcre_replace_array()
2116 ZSTR_LEN(subject_str), replace_str, limit, replace_count); in php_pcre_replace_array()
2135 zend_string *subject, size_t limit, size_t *replace_count) in php_replace_in_subject() argument
2142 replace_str, limit, replace_count); in php_replace_in_subject()
2146 limit, replace_count); in php_replace_in_subject()
2155 zend_string *subject, size_t limit, size_t *replace_count, zend_long flags) in php_replace_in_subject_func() argument
2161 regex_str, subject, fci, fcc, limit, replace_count, flags); in php_replace_in_subject_func()
2180 regex_entry_str, subject, fci, fcc, limit, replace_count, flags); in php_replace_in_subject_func()
2201 size_t replace_count = 0; in preg_replace_func_impl() local
2205 regex_str, regex_ht, fci, fcc, subject_str, limit_val, &replace_count, flags); in preg_replace_func_impl()
2228 regex_str, regex_ht, fci, fcc, subject_entry_str, limit_val, &replace_count, flags); in preg_replace_func_impl()
2242 return replace_count; in preg_replace_func_impl()
2257 size_t replace_count = 0; in preg_replace_common() local
2278 old_replace_count = replace_count; in preg_replace_common()
2280 subject_str, limit, &replace_count); in preg_replace_common()
2282 if (!is_filter || replace_count > old_replace_count) { in preg_replace_common()
2304 old_replace_count = replace_count; in preg_replace_common()
2308 subject_entry_str, limit, &replace_count); in preg_replace_common()
2311 if (!is_filter || replace_count > old_replace_count) { in preg_replace_common()
2328 ZEND_TRY_ASSIGN_REF_LONG(zcount, replace_count); in preg_replace_common()
2349 size_t replace_count; in PHP_FUNCTION() local
2364 replace_count = preg_replace_func_impl(return_value, regex_str, regex_ht, in PHP_FUNCTION()
2368 ZEND_TRY_ASSIGN_REF_LONG(zcount, replace_count); in PHP_FUNCTION()
2380 size_t replace_count = 0; in PHP_FUNCTION() local
2416 replace_count += preg_replace_func_impl(&zv, str_idx_regex, /* regex_ht */ NULL, &fci, &fcc, in PHP_FUNCTION()
2441 ZEND_TRY_ASSIGN_REF_LONG(zcount, replace_count); in PHP_FUNCTION()