Lines Matching refs:subject_ht
2205 zend_string *subject_str, const HashTable *subject_ht, zend_long limit_val, zend_long flags) in php_preg_replace_func_impl() argument
2224 ZEND_ASSERT(subject_ht != NULL); in php_preg_replace_func_impl()
2226 array_init_size(return_value, zend_hash_num_elements(subject_ht)); in php_preg_replace_func_impl()
2231 ZEND_HASH_FOREACH_KEY_VAL(subject_ht, num_key, string_key, subject_entry) { in php_preg_replace_func_impl()
2260 HashTable *subject_ht, zend_string *subject_str, in _preg_replace_common() argument
2295 ZEND_ASSERT(subject_ht != NULL); in _preg_replace_common()
2297 array_init_size(return_value, zend_hash_num_elements(subject_ht)); in _preg_replace_common()
2302 ZEND_HASH_FOREACH_KEY_VAL(subject_ht, num_key, string_key, subject_entry) { in _preg_replace_common()
2335 HashTable *regex_ht, *replace_ht, *subject_ht; in preg_replace_common() local
2343 Z_PARAM_ARRAY_HT_OR_STR(subject_ht, subject_str) in preg_replace_common()
2353 subject_ht, subject_str, in preg_replace_common()
2368 HashTable *regex_ht, *replace_ht, *subject_ht; variable
2373 Z_FLF_PARAM_ARRAY_HT_OR_STR(3, subject_ht, subject_str, subject_tmp);
2379 subject_ht, subject_str,
2395 HashTable *subject_ht; in PHP_FUNCTION() local
2405 Z_PARAM_ARRAY_HT_OR_STR(subject_ht, subject_str) in PHP_FUNCTION()
2414 subject_str, subject_ht, limit, flags); in PHP_FUNCTION()
2425 HashTable *pattern, *subject_ht; in PHP_FUNCTION() local
2433 Z_PARAM_ARRAY_HT_OR_STR(subject_ht, subject_str) in PHP_FUNCTION()
2440 if (subject_ht) { in PHP_FUNCTION()
2441 GC_TRY_ADDREF(subject_ht); in PHP_FUNCTION()
2465 subject_str, subject_ht, limit, flags); in PHP_FUNCTION()
2470 ZEND_ASSERT(subject_ht); in PHP_FUNCTION()
2471 zend_array_release(subject_ht); in PHP_FUNCTION()
2472 subject_ht = Z_ARR(retval); in PHP_FUNCTION()
2494 if (subject_ht) { in PHP_FUNCTION()
2495 RETVAL_ARR(subject_ht); in PHP_FUNCTION()
2497 if (GC_FLAGS(subject_ht) & IS_ARRAY_IMMUTABLE) { in PHP_FUNCTION()
2506 if (subject_ht) { in PHP_FUNCTION()
2507 zend_array_release(subject_ht); in PHP_FUNCTION()