Searched refs:eflags (Results 1 – 2 of 2) sorted by relevance
/picolibc-latest/newlib/libc/posix/ |
D | regexec.c | 160 int eflags) in regexec() argument 174 eflags = GOODFLAGS(eflags); in regexec() 176 if (g->nstates <= (sopno) (CHAR_BIT*sizeof(states1)) && !(eflags®_LARGE)) in regexec() 177 return(smatcher(g, (char *)string, nmatch, pmatch, eflags)); in regexec() 179 return(lmatcher(g, (char *)string, nmatch, pmatch, eflags)); in regexec()
|
D | engine.c | 70 int eflags; member 90 static int matcher(struct re_guts *g, char *string, size_t nmatch, regmatch_t pmatch[], int eflags); 123 #define NOTE(str) { if (m->eflags®_TRACE) printf("=%s\n", (str)); } 140 int eflags) in matcher() argument 162 if (eflags®_STARTEND) { in matcher() 218 m->eflags = eflags; in matcher() 268 if (!g->backrefs && !(m->eflags®_BACKR)) { in matcher() 578 if ( (sp == m->beginp && !(m->eflags®_NOTBOL)) || in backref() 586 if ( (sp == m->endp && !(m->eflags®_NOTEOL)) || in backref() 594 if (( (sp == m->beginp && !(m->eflags®_NOTBOL)) || in backref() [all …]
|