Searched refs:fastmap (Results 1 - 3 of 3) 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 Dregex.h449 the pattern compiler, the fields `buffer', `allocated', `fastmap',
470 /* Pointer to a fastmap, if any, otherwise zero. re_search uses the
471 fastmap, if there is one, to skip over impossible starting points
473 char *_REG_RE_NAME (fastmap);
486 not we should use the fastmap, so we don't set this absolutely
502 one by `re_compile_fastmap' if it updates the fastmap. */
566 /* Compile a fastmap for the compiled pattern in BUFFER; used to
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 23 milliseconds