Searched refs:pmatch (Results 1 – 2 of 2) sorted by relevance
/bionic/libc/upstream-netbsd/lib/libc/regex/ |
D | engine.c | 110 regmatch_t *pmatch; /* [nsub+1] (0 element unused) */ member 129 static int matcher(struct re_guts *g, const char *string, size_t nmatch, regmatch_t pmatch[], int e… 180 regmatch_t pmatch[], in matcher() argument 202 _DIAGASSERT(pmatch != NULL); in matcher() 203 start = string + (size_t)pmatch[0].rm_so; in matcher() 204 stop = string + (size_t)pmatch[0].rm_eo; in matcher() 225 m->pmatch = NULL; in matcher() 261 if (m->pmatch == NULL) in matcher() 262 m->pmatch = (regmatch_t *)malloc((m->g->nsub + 1) * in matcher() 264 if (m->pmatch == NULL) { in matcher() [all …]
|
D | regexec.c | 207 regmatch_t pmatch[], 231 return(smatcher(g, s, nmatch, pmatch, eflags)); 233 return(lmatcher(g, s, nmatch, pmatch, eflags));
|