Home
last modified time | relevance | path

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

/freebsd-10-stable/lib/libc/regex/
Dregfree.c86 if (g->matchjump != NULL) in regfree()
87 free(g->matchjump); in regfree()
Dregcomp.c259 g->matchjump = NULL; in regcomp()
285 if(g->matchjump == NULL && g->charjump != NULL) { in regcomp()
1734 g->matchjump = NULL; in computematchjumps()
1738 g->matchjump = (int*) malloc(g->mlen * sizeof(unsigned int)); in computematchjumps()
1739 if (g->matchjump == NULL) { /* Not a fatal error */ in computematchjumps()
1746 g->matchjump[mindex] = 2*g->mlen - mindex - 1; in computematchjumps()
1761 g->matchjump[suffix] = MIN(g->matchjump[suffix], in computematchjumps()
1772 g->matchjump[mindex] = MIN(g->matchjump[mindex], in computematchjumps()
1778 g->matchjump[suffix] = MIN(g->matchjump[suffix], in computematchjumps()
Dregex2.h183 int *matchjump; /* Boyer-Moore match jump table */ member
Dengine.c170 int *matchjump; in matcher() local
188 if (g->charjump != NULL && g->matchjump != NULL) { in matcher()
192 matchjump = g->matchjump; in matcher()
212 mj = matchjump[pp - mustfirst]; in matcher()