Home
last modified time | relevance | path

Searched refs:fastmap (Results 1 – 24 of 24) sorted by relevance

/netbsd-src/external/gpl2/diffutils/dist/lib/
H A Dregex.c784 print_fastmap (fastmap) in print_fastmap() argument
785 char *fastmap; in print_fastmap()
792 if (fastmap[i++])
796 while (i < (1 << BYTEWIDTH) && fastmap[i])
1162 if (bufp->fastmap_accurate && bufp->fastmap)
1165 print_fastmap (bufp->fastmap);
4649 register char *fastmap = bufp->fastmap; variable
4677 assert (fastmap != NULL && p != NULL);
4680 bzero (fastmap, 1 << BYTEWIDTH); /* Assume nothing's valid. */
4725 fastmap[truncate_wchar(p[1])] = 1;
[all …]
/netbsd-src/external/gpl2/grep/dist/lib/
H A Dregex.c717 print_fastmap (fastmap) in print_fastmap() argument
718 char *fastmap; in print_fastmap()
725 if (fastmap[i++])
729 while (i < (1 << BYTEWIDTH) && fastmap[i])
1100 if (bufp->fastmap_accurate && bufp->fastmap)
1103 print_fastmap (bufp->fastmap);
4561 register char *fastmap = bufp->fastmap; local
4589 assert (fastmap != NULL && p != NULL);
4592 bzero (fastmap, 1 << BYTEWIDTH); /* Assume nothing's valid. */
4637 fastmap[truncate_wchar(p[1])] = 1;
[all …]
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/libgrep/
H A Dregex.c721 print_fastmap (char *fastmap) in print_fastmap() argument
728 if (fastmap[i++]) in print_fastmap()
732 while (i < (1 << BYTEWIDTH) && fastmap[i]) in print_fastmap()
1095 if (bufp->fastmap_accurate && bufp->fastmap) in PREFIX()
1098 print_fastmap (bufp->fastmap); in PREFIX()
4548 register char *fastmap = bufp->fastmap; in PREFIX() local
4576 assert (fastmap != NULL && p != NULL); in PREFIX()
4579 bzero (fastmap, 1 << BYTEWIDTH); /* Assume nothing's valid. */ in PREFIX()
4624 fastmap[truncate_wchar(p[1])] = 1; in PREFIX()
4628 fastmap[p[1]] = 1; in PREFIX()
[all …]
H A Dregex.h354 char *fastmap; member
/netbsd-src/external/gpl3/binutils.old/dist/libiberty/
H A Dregex.c780 print_fastmap (char *fastmap) in print_fastmap() argument
787 if (fastmap[i++]) in print_fastmap()
791 while (i < (1 << BYTEWIDTH) && fastmap[i]) in print_fastmap()
1154 if (bufp->fastmap_accurate && bufp->fastmap) in PREFIX()
1157 print_fastmap (bufp->fastmap); in PREFIX()
4557 register char *fastmap = bufp->fastmap; in PREFIX() local
4585 assert (fastmap != NULL && p != NULL); in PREFIX()
4588 bzero (fastmap, 1 << BYTEWIDTH); /* Assume nothing's valid. */ in PREFIX()
4633 fastmap[truncate_wchar(p[1])] = 1; in PREFIX()
4637 fastmap[p[1]] = 1; in PREFIX()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libiberty/
H A Dregex.c780 print_fastmap (char *fastmap) in print_fastmap() argument
787 if (fastmap[i++]) in print_fastmap()
791 while (i < (1 << BYTEWIDTH) && fastmap[i]) in print_fastmap()
1154 if (bufp->fastmap_accurate && bufp->fastmap) in PREFIX()
1157 print_fastmap (bufp->fastmap); in PREFIX()
4557 register char *fastmap = bufp->fastmap; in PREFIX() local
4585 assert (fastmap != NULL && p != NULL); in PREFIX()
4588 bzero (fastmap, 1 << BYTEWIDTH); /* Assume nothing's valid. */ in PREFIX()
4633 fastmap[truncate_wchar(p[1])] = 1; in PREFIX()
4637 fastmap[p[1]] = 1; in PREFIX()
[all …]
/netbsd-src/external/gpl3/binutils/dist/libiberty/
H A Dregex.c780 print_fastmap (char *fastmap) in print_fastmap() argument
787 if (fastmap[i++]) in print_fastmap()
791 while (i < (1 << BYTEWIDTH) && fastmap[i]) in print_fastmap()
1154 if (bufp->fastmap_accurate && bufp->fastmap) in PREFIX()
1157 print_fastmap (bufp->fastmap); in PREFIX()
4557 register char *fastmap = bufp->fastmap; in PREFIX() local
4585 assert (fastmap != NULL && p != NULL); in PREFIX()
4588 bzero (fastmap, 1 << BYTEWIDTH); /* Assume nothing's valid. */ in PREFIX()
4633 fastmap[truncate_wchar(p[1])] = 1; in PREFIX()
4637 fastmap[p[1]] = 1; in PREFIX()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libiberty/
H A Dregex.c776 print_fastmap (char *fastmap) in print_fastmap() argument
783 if (fastmap[i++]) in print_fastmap()
787 while (i < (1 << BYTEWIDTH) && fastmap[i]) in print_fastmap()
1150 if (bufp->fastmap_accurate && bufp->fastmap) in PREFIX()
1153 print_fastmap (bufp->fastmap); in PREFIX()
4553 register char *fastmap = bufp->fastmap; in PREFIX() local
4581 assert (fastmap != NULL && p != NULL); in PREFIX()
4584 bzero (fastmap, 1 << BYTEWIDTH); /* Assume nothing's valid. */ in PREFIX()
4629 fastmap[truncate_wchar(p[1])] = 1; in PREFIX()
4633 fastmap[p[1]] = 1; in PREFIX()
[all …]
/netbsd-src/external/gpl2/xcvs/dist/lib/
H A Dregcomp.c27 char *fastmap);
270 char *fastmap = bufp->re_fastmap; in weak_alias() local
272 memset (fastmap, '\0', sizeof (char) * SBC_MAX); in weak_alias()
273 re_compile_fastmap_iter (bufp, dfa->init_state, fastmap); in weak_alias()
275 re_compile_fastmap_iter (bufp, dfa->init_state_word, fastmap); in weak_alias()
277 re_compile_fastmap_iter (bufp, dfa->init_state_nl, fastmap); in weak_alias()
279 re_compile_fastmap_iter (bufp, dfa->init_state_begbuf, fastmap); in weak_alias()
289 re_set_fastmap (char *fastmap, bool icase, int ch) in weak_alias()
291 fastmap[ch] = 1; in weak_alias()
293 fastmap[tolower (ch)] = 1; in weak_alias()
[all …]
H A Dregex.h470 char *_REG_RE_NAME (fastmap);
672 # define re_fastmap fastmap
H A Dregexec.c631 char *fastmap = ((preg->re_fastmap != NULL && preg->re_fastmap_accurate in re_search_internal() local
711 (fastmap in re_search_internal()
737 && !fastmap[t[(unsigned char) string[match_first]]]) in re_search_internal()
744 && !fastmap[(unsigned char) string[match_first]]) in re_search_internal()
752 if (!fastmap[t ? t[ch] : ch]) in re_search_internal()
764 if (fastmap[t ? t[ch] : ch]) in re_search_internal()
794 if (fastmap[ch]) in re_search_internal()
/netbsd-src/external/gpl2/diffutils/dist/src/
H A Dcontext.c96 if (ignore_blank_lines || ignore_regexp.fastmap) in print_context_script()
189 if (function_regexp.fastmap) in pr_context_hunk()
318 if (function_regexp.fastmap) in pr_unidiff_hunk()
H A Dutil.c656 bool trivial = ignore_blank_lines || ignore_regexp.fastmap; in analyze_hunk()
682 && (! ignore_regexp.fastmap in analyze_hunk()
692 && (! ignore_regexp.fastmap in analyze_hunk()
H A Dio.c706 if (no_diff_means_no_output && ! function_regexp.fastmap in find_identical_ends()
H A Ddiff.c802 reglist->buf->fastmap = xmalloc (1 << CHAR_BIT); in summarize_regexp_list()
H A Danalyze.c954 if (ignore_blank_lines || ignore_regexp.fastmap) in diff_2_files()
/netbsd-src/external/gpl3/binutils/dist/include/
H A Dxregex2.h350 char *fastmap; member
/netbsd-src/external/gpl3/gcc/dist/include/
H A Dxregex2.h350 char *fastmap; member
/netbsd-src/external/gpl2/grep/dist/lib/posix/
H A Dregex.h351 char *fastmap; member
/netbsd-src/external/gpl3/binutils.old/dist/include/
H A Dxregex2.h350 char *fastmap; member
/netbsd-src/external/gpl2/diffutils/dist/lib/posix/
H A Dregex.h347 char *fastmap; member
/netbsd-src/external/gpl3/gcc.old/dist/include/
H A Dxregex2.h350 char *fastmap; member
/netbsd-src/external/gpl2/xcvs/dist/diff/
H A Ddiff.c738 r->buf.fastmap = xmalloc (256);
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A DChangeLog-200030383 (regcomp): Allocate and initialize a fastmap.