regs               65 ext/mbstring/oniguruma/reggnu.c 	 struct re_registers* regs)
regs               68 ext/mbstring/oniguruma/reggnu.c 		    (UChar* )(str + pos), regs, ONIG_OPTION_NONE);
regs               73 ext/mbstring/oniguruma/reggnu.c 	  struct re_registers* regs)
regs               78 ext/mbstring/oniguruma/reggnu.c 		     regs, ONIG_OPTION_NONE);
regs              693 ext/mbstring/php_mbregex.c 	OnigRegion *regs = NULL;
regs              729 ext/mbstring/php_mbregex.c 	regs = onig_region_new();
regs              732 ext/mbstring/php_mbregex.c 	if (onig_search(re, (OnigUChar *)string, (OnigUChar *)(string + string_len), (OnigUChar *)string, (OnigUChar *)(string + string_len), regs, 0) < 0) {
regs              743 ext/mbstring/php_mbregex.c 		match_len = regs->end[0] - regs->beg[0];
regs              744 ext/mbstring/php_mbregex.c 		for (i = 0; i < regs->num_regs; i++) {
regs              745 ext/mbstring/php_mbregex.c 			beg = regs->beg[i];
regs              746 ext/mbstring/php_mbregex.c 			end = regs->end[i];
regs              760 ext/mbstring/php_mbregex.c 	if (regs != NULL) {
regs              761 ext/mbstring/php_mbregex.c 		onig_region_free(regs, 1);
regs              802 ext/mbstring/php_mbregex.c 	OnigRegion *regs = NULL;
regs              892 ext/mbstring/php_mbregex.c 	regs = onig_region_new();
regs              894 ext/mbstring/php_mbregex.c 		err = onig_search(re, (OnigUChar *)string, (OnigUChar *)string_lim, pos, (OnigUChar *)string_lim, regs, 0);
regs              903 ext/mbstring/php_mbregex.c 			if (regs->beg[0] == regs->end[0]) {
regs              909 ext/mbstring/php_mbregex.c 			smart_str_appendl(&out_buf, (char *)pos, (size_t)((OnigUChar *)(string + regs->beg[0]) - pos));
regs              922 ext/mbstring/php_mbregex.c 					if (n >= 0 && n < regs->num_regs) {
regs              923 ext/mbstring/php_mbregex.c 						if (regs->beg[n] >= 0 && regs->beg[n] < regs->end[n] && regs->end[n] <= string_len) {
regs              924 ext/mbstring/php_mbregex.c 							smart_str_appendl(pbuf, string + regs->beg[n], regs->end[n] - regs->beg[n]);
regs              959 ext/mbstring/php_mbregex.c 				for (i = 0; i < regs->num_regs; i++) {
regs              960 ext/mbstring/php_mbregex.c 					add_next_index_stringl(&subpats, string + regs->beg[i], regs->end[i] - regs->beg[i]);
regs              987 ext/mbstring/php_mbregex.c 			n = regs->end[0];
regs             1002 ext/mbstring/php_mbregex.c 		onig_region_free(regs, 0);
regs             1008 ext/mbstring/php_mbregex.c 	if (regs != NULL) {
regs             1009 ext/mbstring/php_mbregex.c 		onig_region_free(regs, 1);
regs             1056 ext/mbstring/php_mbregex.c 	OnigRegion *regs = NULL;
regs             1081 ext/mbstring/php_mbregex.c 	regs = onig_region_new();
regs             1085 ext/mbstring/php_mbregex.c 		err = onig_search(re, (OnigUChar *)string, (OnigUChar *)(string + string_len), pos, (OnigUChar *)(string + string_len), regs, 0);
regs             1089 ext/mbstring/php_mbregex.c 		beg = regs->beg[0], end = regs->end[0];
regs             1104 ext/mbstring/php_mbregex.c 		onig_region_free(regs, 0);
regs             1107 ext/mbstring/php_mbregex.c 	onig_region_free(regs, 1);