Lines Matching refs:replace_count

1261 							  int limit, int *replace_count)  in php_pcre_replace()  argument
1272 limit, replace_count); in php_pcre_replace()
1280 …bject_str, char *subject, int subject_len, zend_string *replace_str, int limit, int *replace_count) in php_pcre_replace_impl() argument
1392 if (replace_count) { in php_pcre_replace_impl()
1393 ++*replace_count; in php_pcre_replace_impl()
1543 …, int subject_len, zend_fcall_info *fci, zend_fcall_info_cache *fcc, int limit, int *replace_count) in php_pcre_replace_func_impl() argument
1650 if (replace_count) { in php_pcre_replace_func_impl()
1651 ++*replace_count; in php_pcre_replace_func_impl()
1762 int limit, int *replace_count) in php_pcre_replace_func() argument
1773 limit, replace_count); in php_pcre_replace_func()
1782 …ace_array(HashTable *regex, zval *replace, zend_string *subject_str, int limit, int *replace_count) in php_pcre_replace_array() argument
1820 replace_count); in php_pcre_replace_array()
1846 replace_count); in php_pcre_replace_array()
1863 …g *php_replace_in_subject(zval *regex, zval *replace, zval *subject, int limit, int *replace_count) in php_replace_in_subject() argument
1879 replace_count); in php_replace_in_subject()
1886 replace_count); in php_replace_in_subject()
1894 …ex, zend_fcall_info *fci, zend_fcall_info_cache *fcc, zval *subject, int limit, int *replace_count) in php_replace_in_subject_func() argument
1910 replace_count); in php_replace_in_subject_func()
1927 replace_count); in php_replace_in_subject_func()
1946 int replace_count = 0; in preg_replace_func_impl() local
1953 result = php_replace_in_subject_func(regex, fci, fcc, subject, limit_val, &replace_count); in preg_replace_func_impl()
1970 result = php_replace_in_subject_func(regex, fci, fcc, subject_entry, limit_val, &replace_count); in preg_replace_func_impl()
1983 return replace_count; in preg_replace_func_impl()
1993 int replace_count = 0; in preg_replace_common() local
2020 old_replace_count = replace_count; in preg_replace_common()
2025 &replace_count); in preg_replace_common()
2027 if (!is_filter || replace_count > old_replace_count) { in preg_replace_common()
2047 old_replace_count = replace_count; in preg_replace_common()
2052 &replace_count); in preg_replace_common()
2054 if (!is_filter || replace_count > old_replace_count) { in preg_replace_common()
2071 ZVAL_LONG(zcount, replace_count); in preg_replace_common()
2090 int replace_count; in PHP_FUNCTION() local
2116 replace_count = preg_replace_func_impl(return_value, regex, &fci, &fcc, subject, limit); in PHP_FUNCTION()
2119 ZVAL_LONG(zcount, replace_count); in PHP_FUNCTION()
2131 int replace_count = 0; in PHP_FUNCTION() local
2168 replace_count += preg_replace_func_impl(&zv, &regex, &fci, &fcc, subject, limit); in PHP_FUNCTION()
2187 ZVAL_LONG(zcount, replace_count); in PHP_FUNCTION()