subpats          2107 ext/fileinfo/libmagic/softmagic.c 			zval *subpats;
subpats          2111 ext/fileinfo/libmagic/softmagic.c 			ALLOC_INIT_ZVAL(subpats);
subpats          2117 ext/fileinfo/libmagic/softmagic.c 			php_pcre_match_impl(pce, haystack, ms->search.s_len, retval, subpats, 0, 1, PREG_OFFSET_CAPTURE, 0 TSRMLS_CC);
subpats          2122 ext/fileinfo/libmagic/softmagic.c 				zval_ptr_dtor(&subpats);
subpats          2127 ext/fileinfo/libmagic/softmagic.c 			} else if ((Z_LVAL_P(retval) > 0) && (Z_TYPE_P(subpats) == IS_ARRAY)) {
subpats          2130 ext/fileinfo/libmagic/softmagic.c 				HashTable *ht = Z_ARRVAL_P(subpats);
subpats          2153 ext/fileinfo/libmagic/softmagic.c 					zval_ptr_dtor(&subpats);
subpats          2162 ext/fileinfo/libmagic/softmagic.c 			zval_ptr_dtor(&subpats);
subpats          1322 ext/imap/php_imap.c 	zval *subpats = NULL;				/* Parts (not used) */
subpats          1337 ext/imap/php_imap.c 		php_pcre_match_impl(pce, internal_date, internal_date_len, return_value, subpats, global,
subpats           958 ext/mbstring/php_mbregex.c 				zval *subpats;
subpats           961 ext/mbstring/php_mbregex.c 				MAKE_STD_ZVAL(subpats);
subpats           962 ext/mbstring/php_mbregex.c 				array_init(subpats);
subpats           965 ext/mbstring/php_mbregex.c 					add_next_index_stringl(subpats, string + regs->beg[i], regs->end[i] - regs->beg[i], 1);
subpats           968 ext/mbstring/php_mbregex.c 				args[0] = &subpats;
subpats           986 ext/mbstring/php_mbregex.c 				zval_ptr_dtor(&subpats);
subpats           565 ext/pcre/php_pcre.c 	zval			 *subpats = NULL;	/* Array for subpatterns */
subpats           570 ext/pcre/php_pcre.c 							  &subject, &subject_len, &subpats, &flags, &start_offset) == FAILURE) {
subpats           580 ext/pcre/php_pcre.c 	php_pcre_match_impl(pce, subject, subject_len, return_value, subpats,
subpats           588 ext/pcre/php_pcre.c 	zval *subpats, int global, int use_flags, long flags, long start_offset TSRMLS_DC)
subpats           612 ext/pcre/php_pcre.c 	if (subpats != NULL) {
subpats           613 ext/pcre/php_pcre.c 		zval_dtor(subpats);
subpats           614 ext/pcre/php_pcre.c 		array_init(subpats);
subpats           679 ext/pcre/php_pcre.c 	if (global && subpats && subpats_order == PREG_PATTERN_ORDER) {
subpats           710 ext/pcre/php_pcre.c 			if (subpats != NULL) {
subpats           721 ext/pcre/php_pcre.c 					if (subpats && subpats_order == PREG_PATTERN_ORDER) {
subpats           775 ext/pcre/php_pcre.c 						zend_hash_next_index_insert(Z_ARRVAL_P(subpats), &result_set, sizeof(zval *), NULL);
subpats           781 ext/pcre/php_pcre.c 							add_offset_pair(subpats, (char *)stringlist[i],
subpats           786 ext/pcre/php_pcre.c 								add_assoc_stringl(subpats, subpat_names[i], (char *)stringlist[i],
subpats           789 ext/pcre/php_pcre.c 							add_next_index_stringl(subpats, (char *)stringlist[i],
subpats           795 ext/pcre/php_pcre.c 						add_assoc_string(subpats, "MARK", (char *) mark, 1);
subpats           829 ext/pcre/php_pcre.c 	if (global && subpats && subpats_order == PREG_PATTERN_ORDER) {
subpats           832 ext/pcre/php_pcre.c 				zend_hash_update(Z_ARRVAL_P(subpats), subpat_names[i],
subpats           836 ext/pcre/php_pcre.c 			zend_hash_next_index_insert(Z_ARRVAL_P(subpats), &match_sets[i], sizeof(zval *), NULL);
subpats           841 ext/pcre/php_pcre.c 			add_assoc_zval(subpats, "MARK", marks);
subpats           918 ext/pcre/php_pcre.c 	zval		*subpats;			/* Captured subpatterns */
subpats           922 ext/pcre/php_pcre.c 	MAKE_STD_ZVAL(subpats);
subpats           923 ext/pcre/php_pcre.c 	array_init(subpats);
subpats           926 ext/pcre/php_pcre.c 			add_assoc_stringl(subpats, subpat_names[i], &subject[offsets[i<<1]] , offsets[(i<<1)+1] - offsets[i<<1], 1);
subpats           928 ext/pcre/php_pcre.c 		add_next_index_stringl(subpats, &subject[offsets[i<<1]], offsets[(i<<1)+1] - offsets[i<<1], 1);
subpats           931 ext/pcre/php_pcre.c 		add_assoc_string(subpats, "MARK", (char *) mark, 1);
subpats           933 ext/pcre/php_pcre.c 	args[0] = &subpats;
subpats           948 ext/pcre/php_pcre.c 	zval_ptr_dtor(&subpats);
subpats            58 ext/pcre/php_pcre.h 	zval *subpats, int global, int use_flags, long flags, long start_offset TSRMLS_DC);