Lines Matching refs:subject_ht

2221 	zend_string *subject_str, HashTable *subject_ht, zend_long limit_val, zend_long flags)  in preg_replace_func_impl()  argument
2240 ZEND_ASSERT(subject_ht != NULL); in preg_replace_func_impl()
2242 array_init_size(return_value, zend_hash_num_elements(subject_ht)); in preg_replace_func_impl()
2247 ZEND_HASH_FOREACH_KEY_VAL(subject_ht, num_key, string_key, subject_entry) { in preg_replace_func_impl()
2274 HashTable *subject_ht, zend_string *subject_str, in _preg_replace_common() argument
2309 ZEND_ASSERT(subject_ht != NULL); in _preg_replace_common()
2311 array_init_size(return_value, zend_hash_num_elements(subject_ht)); in _preg_replace_common()
2316 ZEND_HASH_FOREACH_KEY_VAL(subject_ht, num_key, string_key, subject_entry) { in _preg_replace_common()
2349 HashTable *regex_ht, *replace_ht, *subject_ht; in preg_replace_common() local
2357 Z_PARAM_ARRAY_HT_OR_STR(subject_ht, subject_str) in preg_replace_common()
2367 subject_ht, subject_str, in preg_replace_common()
2382 HashTable *regex_ht, *replace_ht, *subject_ht; variable
2387 Z_FLF_PARAM_ARRAY_HT_OR_STR(3, subject_ht, subject_str, subject_tmp);
2393 subject_ht, subject_str,
2409 HashTable *subject_ht; in PHP_FUNCTION() local
2419 Z_PARAM_ARRAY_HT_OR_STR(subject_ht, subject_str) in PHP_FUNCTION()
2428 subject_str, subject_ht, limit, flags); in PHP_FUNCTION()
2439 HashTable *pattern, *subject_ht; in PHP_FUNCTION() local
2449 Z_PARAM_ARRAY_HT_OR_STR(subject_ht, subject_str) in PHP_FUNCTION()
2460 if (subject_ht) { in PHP_FUNCTION()
2461 GC_TRY_ADDREF(subject_ht); in PHP_FUNCTION()
2479 subject_str, subject_ht, limit, flags); in PHP_FUNCTION()
2482 ZEND_ASSERT(subject_ht); in PHP_FUNCTION()
2483 zend_array_release(subject_ht); in PHP_FUNCTION()
2484 subject_ht = Z_ARR(zv); in PHP_FUNCTION()
2506 if (subject_ht) { in PHP_FUNCTION()
2507 RETVAL_ARR(subject_ht); in PHP_FUNCTION()
2509 if (GC_FLAGS(subject_ht) & IS_ARRAY_IMMUTABLE) { in PHP_FUNCTION()
2518 if (subject_ht) { in PHP_FUNCTION()
2519 zend_array_release(subject_ht); in PHP_FUNCTION()