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              696 ext/mbstring/php_mbregex.c 	OnigRegion *regs = NULL;
regs              734 ext/mbstring/php_mbregex.c 	regs = onig_region_new();
regs              737 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              745 ext/mbstring/php_mbregex.c 		match_len = regs->end[0] - regs->beg[0];
regs              748 ext/mbstring/php_mbregex.c 		for (i = 0; i < regs->num_regs; i++) {
regs              749 ext/mbstring/php_mbregex.c 			beg = regs->beg[i];
regs              750 ext/mbstring/php_mbregex.c 			end = regs->end[i];
regs              764 ext/mbstring/php_mbregex.c 	if (regs != NULL) {
regs              765 ext/mbstring/php_mbregex.c 		onig_region_free(regs, 1);
regs              806 ext/mbstring/php_mbregex.c 	OnigRegion *regs = NULL;
regs              894 ext/mbstring/php_mbregex.c 	regs = onig_region_new();
regs              896 ext/mbstring/php_mbregex.c 		err = onig_search(re, (OnigUChar *)string, (OnigUChar *)string_lim, pos, (OnigUChar *)string_lim, regs, 0);
regs              905 ext/mbstring/php_mbregex.c 			if (regs->beg[0] == regs->end[0]) {
regs              911 ext/mbstring/php_mbregex.c 			smart_str_appendl(&out_buf, pos, (size_t)((OnigUChar *)(string + regs->beg[0]) - pos));
regs              924 ext/mbstring/php_mbregex.c 					if (n >= 0 && n < regs->num_regs) {
regs              925 ext/mbstring/php_mbregex.c 						if (regs->beg[n] >= 0 && regs->beg[n] < regs->end[n] && regs->end[n] <= string_len) {
regs              926 ext/mbstring/php_mbregex.c 							smart_str_appendl(pbuf, string + regs->beg[n], regs->end[n] - regs->beg[n]);
regs              964 ext/mbstring/php_mbregex.c 				for (i = 0; i < regs->num_regs; i++) {
regs              965 ext/mbstring/php_mbregex.c 					add_next_index_stringl(subpats, string + regs->beg[i], regs->end[i] - regs->beg[i], 1);
regs              989 ext/mbstring/php_mbregex.c 			n = regs->end[0];
regs             1004 ext/mbstring/php_mbregex.c 		onig_region_free(regs, 0);
regs             1010 ext/mbstring/php_mbregex.c 	if (regs != NULL) {
regs             1011 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);