Searched refs:fastmap (Results 1 - 15 of 15) sorted by relevance

/freebsd-10.1-release/contrib/diff/src/
H A Dcontext.c94 if (ignore_blank_lines || ignore_regexp.fastmap)
189 if (function_regexp.fastmap)
321 if (function_regexp.fastmap)
H A Dutil.c670 bool trivial = ignore_blank_lines || ignore_regexp.fastmap;
703 && (! ignore_regexp.fastmap
718 && (! ignore_regexp.fastmap
H A Dio.c714 if (no_diff_means_no_output && ! function_regexp.fastmap
H A Danalyze.c927 if (ignore_blank_lines || ignore_regexp.fastmap)
H A Ddiff.c828 /* At least one regexp was specified. Allocate a fastmap for it. */
829 reglist->buf->fastmap = xmalloc (1 << CHAR_BIT);
/freebsd-10.1-release/contrib/libgnuregex/
H A Dregcomp.c24 char *fastmap);
273 char *fastmap = bufp->fastmap;
275 memset (fastmap, '\0', sizeof (char) * SBC_MAX);
276 re_compile_fastmap_iter (bufp, dfa->init_state, fastmap);
278 re_compile_fastmap_iter (bufp, dfa->init_state_word, fastmap);
280 re_compile_fastmap_iter (bufp, dfa->init_state_nl, fastmap);
282 re_compile_fastmap_iter (bufp, dfa->init_state_begbuf, fastmap);
292 re_set_fastmap (char *fastmap, int icase, int ch)
294 fastmap[c
271 char *fastmap = bufp->fastmap; local
290 re_set_fastmap(char *fastmap, int icase, int ch) argument
301 re_compile_fastmap_iter(regex_t *bufp, const re_dfastate_t *init_state, char *fastmap) argument
674 char *fastmap; local
[all...]
H A Dregex.h343 the pattern compiler, the fields `buffer', `allocated', `fastmap',
377 /* Pointer to a fastmap, if any, otherwise zero. re_search uses the
378 fastmap, if there is one, to skip over impossible starting points
380 char *__REPB_PREFIX(fastmap);
393 not we should use the fastmap, so we don't set this absolutely
409 by `re_compile_fastmap' if it updates the fastmap. */
483 /* Compile a fastmap for the compiled pattern in BUFFER; used to
H A Dregexec.c433 /* Compile fastmap if we haven't yet. */
434 if (range > 0 && bufp->fastmap != NULL && !bufp->fastmap_accurate)
650 char *fastmap = (preg->fastmap != NULL && preg->fastmap_accurate
651 && range && !preg->can_be_null) ? preg->fastmap : NULL;
734 (fastmap
754 /* No fastmap. */
760 && !fastmap[t[(unsigned char) string[match_first]]])
767 && !fastmap[(unsigned char) string[match_first]])
775 if (!fastmap[
647 char *fastmap = (preg->fastmap != NULL && preg->fastmap_accurate local
[all...]
/freebsd-10.1-release/contrib/binutils/libiberty/
H A Dregex.c777 /* Print the fastmap in human-readable form. */
781 print_fastmap (char *fastmap)
788 if (fastmap[i++])
792 while (i < (1 << BYTEWIDTH) && fastmap[i])
1155 if (bufp->fastmap_accurate && bufp->fastmap)
1157 printf ("fastmap: ");
1158 print_fastmap (bufp->fastmap);
2282 The `fastmap' and `newline_anchor' fields are neither
4520 /* re_compile_fastmap computes a ``fastmap'' for the compiled pattern in
4521 BUFP. A fastmap record
775 print_fastmap(char *fastmap) argument
4551 register char *fastmap = bufp->fastmap; local
5013 register char *fastmap = bufp->fastmap; local
[all...]
/freebsd-10.1-release/contrib/gcclibs/libiberty/
H A Dregex.c777 /* Print the fastmap in human-readable form. */
781 print_fastmap (char *fastmap)
788 if (fastmap[i++])
792 while (i < (1 << BYTEWIDTH) && fastmap[i])
1155 if (bufp->fastmap_accurate && bufp->fastmap)
1157 printf ("fastmap: ");
1158 print_fastmap (bufp->fastmap);
2282 The `fastmap' and `newline_anchor' fields are neither
4520 /* re_compile_fastmap computes a ``fastmap'' for the compiled pattern in
4521 BUFP. A fastmap record
775 print_fastmap(char *fastmap) argument
4551 register char *fastmap = bufp->fastmap; local
5013 register char *fastmap = bufp->fastmap; local
[all...]
/freebsd-10.1-release/contrib/binutils/include/
H A Dxregex2.h325 the pattern compiler, the fields `buffer', `allocated', `fastmap',
351 /* Pointer to a fastmap, if any, otherwise zero. re_search uses member in struct:re_pattern_buffer
352 the fastmap, if there is one, to skip over impossible
354 char *fastmap;
367 whether or not we should use the fastmap, so we don't set
382 by `re_compile_fastmap' if it updates the fastmap. */
456 /* Compile a fastmap for the compiled pattern in BUFFER; used to
/freebsd-10.1-release/contrib/gcclibs/include/
H A Dxregex2.h325 the pattern compiler, the fields `buffer', `allocated', `fastmap',
351 /* Pointer to a fastmap, if any, otherwise zero. re_search uses member in struct:re_pattern_buffer
352 the fastmap, if there is one, to skip over impossible
354 char *fastmap;
367 whether or not we should use the fastmap, so we don't set
382 by `re_compile_fastmap' if it updates the fastmap. */
456 /* Compile a fastmap for the compiled pattern in BUFFER; used to
/freebsd-10.1-release/contrib/gdb/include/
H A Dxregex2.h322 the pattern compiler, the fields `buffer', `allocated', `fastmap',
348 /* Pointer to a fastmap, if any, otherwise zero. re_search uses member in struct:re_pattern_buffer
349 the fastmap, if there is one, to skip over impossible
351 char *fastmap;
364 whether or not we should use the fastmap, so we don't set
379 by `re_compile_fastmap' if it updates the fastmap. */
464 /* Compile a fastmap for the compiled pattern in BUFFER; used to
/freebsd-10.1-release/contrib/gdb/gdb/
H A Dmonitor.c705 char *fastmap)
710 compiled_pattern->fastmap = fastmap;
721 if (fastmap)
704 compile_pattern(char *pattern, struct re_pattern_buffer *compiled_pattern, char *fastmap) argument
/freebsd-10.1-release/contrib/gdb/gdb/cli/
H A Dcli-cmds.c979 pattern.fastmap=pattern_fastmap;

Completed in 358 milliseconds