Searched refs:nsub (Results 1 - 25 of 38) sorted by relevance

12

/macosx-10.10.1/ksh-23/ksh/src/lib/libast/comp/
H A Dregcmp.c41 int nsub; member in struct:__anon9049
72 int nsub; local
88 nsub = 0;
139 if (nsub <= j)
141 if (!nsub)
143 nsub = j + 1;
184 if (re->nsub = nsub)
185 memcpy(re->sub, sub, (nsub + 1) * sizeof(sub[0]));
206 for (n = 0; n < re->nsub;
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/librewrite/
H A Dsubst.c40 int nsub = 0, l; local
69 sizeof( struct berval )*( nsub + 1 ) );
82 subs[ nsub ].bv_len = l;
83 subs[ nsub ].bv_val = malloc( l + 1 );
84 if ( subs[ nsub ].bv_val == NULL ) {
87 AC_MEMCPY( subs[ nsub ].bv_val, begin, l );
88 subs[ nsub ].bv_val[ l ] = '\0';
90 subs[ nsub ].bv_val = NULL;
91 subs[ nsub ].bv_len = 0;
106 sizeof( struct rewrite_submatch )*( nsub
[all...]
/macosx-10.10.1/bind9-45.101/bind9/lib/dns/rdata/in_1/
H A Dnaptr_35.c41 unsigned int nsub = 0; local
114 case '1': if (nsub < 1) nsub = 1; break;
115 case '2': if (nsub < 2) nsub = 2; break;
116 case '3': if (nsub < 3) nsub = 3; break;
117 case '4': if (nsub < 4) nsub = 4; break;
118 case '5': if (nsub <
[all...]
/macosx-10.10.1/ncurses-44/ncurses/c++/
H A Dcursesm.cc207 NCursesMenu::setSubWindow(NCursesWindow& nsub) argument
209 if (!isDescendant(nsub))
214 sub = &nsub;
H A Dcursesf.cc181 NCursesForm::setSubWindow(NCursesWindow& nsub) argument
183 if (!isDescendant(nsub))
188 sub = &nsub;
/macosx-10.10.1/cups-408/cups/vcnet/regex/
H A Dregex2.h125 size_t nsub; /* copy of re_nsub */ member in struct:re_guts
H A Ddebug.c38 if (g->nsub > 0)
39 fprintf(d, ", nsub=%ld", (long)g->nsub);
H A Dengine.c35 regmatch_t *pmatch; /* [nsub+1] (0 element unused) */
146 m->pmatch = (regmatch_t *)malloc((m->g->nsub + 1) *
152 for (i = 1; i <= m->g->nsub; i++)
184 for (i = 1; i <= m->g->nsub; i++) {
210 if (i <= m->g->nsub)
396 assert(0 < i && i <= m->g->nsub);
401 assert(0 < i && i <= m->g->nsub);
527 assert(0 < i && i <= m->g->nsub);
588 assert(0 < i && i <= m->g->nsub);
599 assert(0 < i && i <= m->g->nsub);
[all...]
H A Dregcomp.c146 g->nsub = 0;
170 preg->re_nsub = g->nsub;
253 p->g->nsub++;
254 subno = p->g->nsub;
473 p->g->nsub++;
474 subno = p->g->nsub;
504 assert(i <= p->g->nsub);
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A Dregex2.h148 size_t nsub; /* copy of re_nsub */ member in struct:re_guts
H A Dregengine.inc74 llvm_regmatch_t *pmatch; /* [nsub+1] (0 element unused) */
210 m->pmatch = (llvm_regmatch_t *)malloc((m->g->nsub + 1) *
216 for (i = 1; i <= m->g->nsub; i++)
248 for (i = 1; i <= m->g->nsub; i++) {
275 if (i <= m->g->nsub)
461 assert(0 < i && i <= m->g->nsub);
466 assert(0 < i && i <= m->g->nsub);
585 assert(0 < i && i <= m->g->nsub);
648 assert(0 < i && i <= m->g->nsub);
659 assert(0 < i && i <= m->g->nsub);
[all...]
H A Dregcomp.c214 g->nsub = 0;
238 preg->re_nsub = g->nsub;
316 p->g->nsub++;
317 subno = p->g->nsub;
529 p->g->nsub++;
530 subno = p->g->nsub;
560 assert(i <= p->g->nsub);
/macosx-10.10.1/swig-12/Source/Swig/
H A Dmisc.c1066 int nsub = (int) compiled.re_nsub + 1; local
1067 regmatch_t *pmatch = (regmatch_t *) malloc(sizeof(regmatch_t) * (nsub));
1068 retval = regexec(&compiled, cvalue, nsub, pmatch, 0);
1080 if (i < nsub && (len = pmatch[i].rm_eo - pmatch[i].rm_so)) {
/macosx-10.10.1/tcl-105/tcl/tcl/generic/
H A Dregguts.h398 size_t nsub; /* copy of re_nsub */ member in struct:guts
H A Dregexec.c222 if (v->g->nsub + 1 <= LOCALMAT) {
226 MALLOC((v->g->nsub + 1) * sizeof(regmatch_t));
232 v->nmatch = v->g->nsub + 1;
/macosx-10.10.1/tcl-105/tcl84/tcl/generic/
H A Dregguts.h420 size_t nsub; /* copy of re_nsub */ member in struct:guts
H A Dregexec.c203 if (v->g->nsub + 1 <= LOCALMAT)
206 v->pmatch = (regmatch_t *)MALLOC((v->g->nsub + 1) *
210 v->nmatch = v->g->nsub + 1;
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Ddict_regexp.c203 #define DICT_REGEXP_REGEXEC(err, map, line, expr, match, str, nsub, pmatch) \
204 ((err) = regexec((expr), (str), (nsub), (pmatch), 0), \
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/regex/
H A Dreglib.h541 size_t nsub; /* internal re_nsub */ member in struct:reglib_s
H A Dregnexec.c387 DEBUG_CODE(0x0040,{sfprintf(sfstdout, "AHA better old ");for (i = 0; i <= env->nsub; i++)showmatch(&env->best[i]);sfprintf(sfstdout, "\n new ");for (i = 0; i <= env->nsub; i++)showmatch(&env->match[i]);sfprintf(sfstdout, "\n");},{0;});
1039 r = env->nsub;
1877 n = env->nsub;
1951 n = env->nsub;
1965 n = env->nsub;
/macosx-10.10.1/awk-20/src/
H A Drun.c461 int nsub = strlen(*SUBSEP); local
471 if (!adjbuf(&buf, &bufsz, strlen(buf)+strlen(s)+nsub+1, recsize, 0, "array"))
499 int nsub = strlen(*SUBSEP); local
518 if (!adjbuf(&buf, &bufsz, strlen(buf)+strlen(s)+nsub+1, recsize, 0, "awkdelete"))
539 int nsub = strlen(*SUBSEP); local
557 if (!adjbuf(&buf, &bufsz, strlen(buf)+strlen(s)+nsub+1, recsize, 0, "intest"))
/macosx-10.10.1/emacs-93/emacs/src/
H A Dgtkutil.c2758 GtkWidget *nsub;
2760 nsub = xg_update_submenu (sub, f, cur->contents,
2765 if (nsub != sub)
2766 gtk_menu_item_set_submenu (witem, nsub);
2752 GtkWidget *nsub; local
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/htmlparse/
H A Dhtmlparse.tcl85 ge \u2265 sub \u2282 sup \u2283 nsub \u2284 sube \u2286
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/html/
H A Dhtml.tcl99 \u2265 &ge; \u2282 &sub; \u2283 &sup; \u2284 &nsub; \u2286 &sube;
/macosx-10.10.1/apache-793/httpd/modules/filters/
H A Dmod_include.c163 apr_size_t nsub; member in struct:__anon5934
667 else if (re->nsub < idx || idx >= AP_MAX_REG_MATCH) {
982 re->nsub = compiled->re_nsub;

Completed in 238 milliseconds

12