Searched defs:fastmap (Results 1 - 2 of 2) sorted by relevance

/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dregcomp.c26 char *fastmap);
281 char *fastmap = bufp->fastmap;
283 memset (fastmap, '\0', sizeof (char) * SBC_MAX);
284 re_compile_fastmap_iter (bufp, dfa->init_state, fastmap);
286 re_compile_fastmap_iter (bufp, dfa->init_state_word, fastmap);
288 re_compile_fastmap_iter (bufp, dfa->init_state_nl, fastmap);
290 re_compile_fastmap_iter (bufp, dfa->init_state_begbuf, fastmap);
300 re_set_fastmap (char *fastmap, bool icase, int ch)
302 fastmap[c
279 char *fastmap = bufp->fastmap; local
298 re_set_fastmap(char *fastmap, bool icase, int ch) argument
309 re_compile_fastmap_iter(regex_t *bufp, const re_dfastate_t *init_state, char *fastmap) argument
697 char *fastmap; local
[all...]
H A Dregexec.c447 /* Compile fastmap if we haven't yet. */
448 if (start < last_start && bufp->fastmap != NULL && !bufp->fastmap_accurate)
666 char *fastmap = ((preg->fastmap != NULL && preg->fastmap_accurate
668 ? preg->fastmap : NULL);
752 (fastmap
772 /* No fastmap. */
778 && !fastmap[t[(unsigned char) string[match_first]]])
785 && !fastmap[(unsigned char) string[match_first]])
793 if (!fastmap[
663 char *fastmap = ((preg->fastmap != NULL && preg->fastmap_accurate local
[all...]

Completed in 188 milliseconds