Home
last modified time | relevance | path

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

/picolibc-latest/newlib/libc/posix/
Dregfree.c79 if (g->matchjump != NULL) in regfree()
80 free(g->matchjump); in regfree()
Dregcomp.c240 g->matchjump = NULL; in regcomp()
270 if(g->matchjump == NULL && g->charjump != NULL) { in regcomp()
1923 g->matchjump = NULL; in computematchjumps()
1927 g->matchjump = (int*) calloc(g->mlen, sizeof(unsigned int)); in computematchjumps()
1928 if (g->matchjump == NULL) { /* Not a fatal error */ in computematchjumps()
1935 g->matchjump[mindex] = 2*g->mlen - mindex - 1; in computematchjumps()
1950 g->matchjump[suffix] = MIN(g->matchjump[suffix], in computematchjumps()
1961 g->matchjump[mindex] = MIN(g->matchjump[mindex], in computematchjumps()
1967 g->matchjump[suffix] = MIN(g->matchjump[suffix], in computematchjumps()
Dregex2.h162 int *matchjump; /* Boyer-Moore match jump table */ member
Dengine.c156 int *matchjump; in matcher() local
174 if (g->charjump != NULL && g->matchjump != NULL) { in matcher()
178 matchjump = g->matchjump; in matcher()
198 mj = matchjump[pp - mustfirst]; in matcher()