Home
last modified time | relevance | path

Searched refs:matchjump (Results 1 – 4 of 4) sorted by relevance

/bionic/libc/upstream-netbsd/lib/libc/regex/
Dregfree.c101 if (g->matchjump != NULL) in __weak_alias()
102 free(g->matchjump); in __weak_alias()
Dregcomp.c368 g->matchjump = NULL; in regcomp_internal()
392 if(g->matchjump == NULL && g->charjump != NULL) { in regcomp_internal()
2342 g->matchjump = NULL;
2346 g->matchjump = calloc(g->mlen, sizeof(*g->matchjump));
2347 if (g->matchjump == NULL) { /* Not a fatal error */
2354 g->matchjump[mindex] = 2 * g->mlen - mindex - 1;
2368 g->matchjump[suffix] = MIN(g->matchjump[suffix],
2379 g->matchjump[mindex] = MIN(g->matchjump[mindex],
2385 g->matchjump[suffix] = MIN(g->matchjump[suffix],
Dregex2.h196 size_t *matchjump; /* Boyer-Moore match jump table */ member
Dengine.c220 size_t *matchjump; in matcher() local
244 if (g->charjump != NULL && g->matchjump != NULL) { in matcher()
248 matchjump = g->matchjump; in matcher()
268 mj = matchjump[pp - mustfirst]; in matcher()