Lines Matching refs:subject_ht
2212 zend_string *subject_str, HashTable *subject_ht, zend_long limit_val, zend_long flags) in preg_replace_func_impl() argument
2231 ZEND_ASSERT(subject_ht != NULL); in preg_replace_func_impl()
2233 array_init_size(return_value, zend_hash_num_elements(subject_ht)); in preg_replace_func_impl()
2238 ZEND_HASH_FOREACH_KEY_VAL(subject_ht, num_key, string_key, subject_entry) { in preg_replace_func_impl()
2265 HashTable *subject_ht, zend_string *subject_str, in _preg_replace_common() argument
2300 ZEND_ASSERT(subject_ht != NULL); in _preg_replace_common()
2302 array_init_size(return_value, zend_hash_num_elements(subject_ht)); in _preg_replace_common()
2307 ZEND_HASH_FOREACH_KEY_VAL(subject_ht, num_key, string_key, subject_entry) { in _preg_replace_common()
2340 HashTable *regex_ht, *replace_ht, *subject_ht; in preg_replace_common() local
2348 Z_PARAM_ARRAY_HT_OR_STR(subject_ht, subject_str) in preg_replace_common()
2358 subject_ht, subject_str, in preg_replace_common()
2373 HashTable *regex_ht, *replace_ht, *subject_ht; variable
2378 Z_FLF_PARAM_ARRAY_HT_OR_STR(3, subject_ht, subject_str, subject_tmp);
2384 subject_ht, subject_str,
2400 HashTable *subject_ht; in PHP_FUNCTION() local
2410 Z_PARAM_ARRAY_HT_OR_STR(subject_ht, subject_str) in PHP_FUNCTION()
2419 subject_str, subject_ht, limit, flags); in PHP_FUNCTION()
2430 HashTable *pattern, *subject_ht; in PHP_FUNCTION() local
2440 Z_PARAM_ARRAY_HT_OR_STR(subject_ht, subject_str) in PHP_FUNCTION()
2451 if (subject_ht) { in PHP_FUNCTION()
2452 GC_TRY_ADDREF(subject_ht); in PHP_FUNCTION()
2470 subject_str, subject_ht, limit, flags); in PHP_FUNCTION()
2473 ZEND_ASSERT(subject_ht); in PHP_FUNCTION()
2474 zend_array_release(subject_ht); in PHP_FUNCTION()
2475 subject_ht = Z_ARR(zv); in PHP_FUNCTION()
2497 if (subject_ht) { in PHP_FUNCTION()
2498 RETVAL_ARR(subject_ht); in PHP_FUNCTION()
2500 if (GC_FLAGS(subject_ht) & IS_ARRAY_IMMUTABLE) { in PHP_FUNCTION()
2509 if (subject_ht) { in PHP_FUNCTION()
2510 zend_array_release(subject_ht); in PHP_FUNCTION()