/netbsd-src/external/gpl2/diffutils/dist/lib/ |
H A D | regex.c | 784 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 D | regex.c | 717 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 D | regex.c | 721 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 D | regex.h | 354 char *fastmap; member
|
/netbsd-src/external/gpl3/binutils.old/dist/libiberty/ |
H A D | regex.c | 780 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 D | regex.c | 780 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 D | regex.c | 780 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 D | regex.c | 776 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 D | regcomp.c | 27 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 D | regex.h | 470 char *_REG_RE_NAME (fastmap); 672 # define re_fastmap fastmap
|
H A D | regexec.c | 631 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 D | context.c | 96 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 D | util.c | 656 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 D | io.c | 706 if (no_diff_means_no_output && ! function_regexp.fastmap in find_identical_ends()
|
H A D | diff.c | 802 reglist->buf->fastmap = xmalloc (1 << CHAR_BIT); in summarize_regexp_list()
|
H A D | analyze.c | 954 if (ignore_blank_lines || ignore_regexp.fastmap) in diff_2_files()
|
/netbsd-src/external/gpl3/binutils/dist/include/ |
H A D | xregex2.h | 350 char *fastmap; member
|
/netbsd-src/external/gpl3/gcc/dist/include/ |
H A D | xregex2.h | 350 char *fastmap; member
|
/netbsd-src/external/gpl2/grep/dist/lib/posix/ |
H A D | regex.h | 351 char *fastmap; member
|
/netbsd-src/external/gpl3/binutils.old/dist/include/ |
H A D | xregex2.h | 350 char *fastmap; member
|
/netbsd-src/external/gpl2/diffutils/dist/lib/posix/ |
H A D | regex.h | 347 char *fastmap; member
|
/netbsd-src/external/gpl3/gcc.old/dist/include/ |
H A D | xregex2.h | 350 char *fastmap; member
|
/netbsd-src/external/gpl2/xcvs/dist/diff/ |
H A D | diff.c | 738 r->buf.fastmap = xmalloc (256);
|
/netbsd-src/external/gpl3/gcc/dist/gcc/ |
H A D | ChangeLog-2000 | 30383 (regcomp): Allocate and initialize a fastmap.
|