HomeSort by: relevance | last modified time | path
    Searched defs:fastmap (Results 1 - 20 of 20) sorted by relevancy

  /src/external/gpl2/diffutils/dist/lib/posix/
regex.h 321 the pattern compiler, the fields `buffer', `allocated', `fastmap',
347 /* Pointer to a fastmap, if any, otherwise zero. re_search uses member in struct:re_pattern_buffer
348 the fastmap, if there is one, to skip over impossible
350 char *fastmap;
363 whether or not we should use the fastmap, so we don't set
378 by `re_compile_fastmap' if it updates the fastmap. */
463 /* Compile a fastmap for the compiled pattern in BUFFER; used to
  /src/external/gpl2/gettext/dist/gettext-tools/libgrep/
regex.h 328 the pattern compiler, the fields `buffer', `allocated', `fastmap',
354 /* Pointer to a fastmap, if any, otherwise zero. re_search uses member in struct:re_pattern_buffer
355 the fastmap, if there is one, to skip over impossible
357 char *fastmap;
370 whether or not we should use the fastmap, so we don't set
385 by `re_compile_fastmap' if it updates the fastmap. */
453 /* Compile a fastmap for the compiled pattern in BUFFER; used to
regex.c 723 /* Print the fastmap in human-readable form. */
727 print_fastmap (char *fastmap)
734 if (fastmap[i++])
738 while (i < (1 << BYTEWIDTH) && fastmap[i])
1101 if (bufp->fastmap_accurate && bufp->fastmap)
1103 printf ("fastmap: ");
1104 print_fastmap (bufp->fastmap);
2287 The `fastmap' and `newline_anchor' fields are neither
4522 /* re_compile_fastmap computes a ``fastmap'' for the compiled pattern in
4523 BUFP. A fastmap records which of the (1 << BYTEWIDTH) possibl
4548 register char *fastmap = bufp->fastmap; local
5018 register char *fastmap = bufp->fastmap; local
    [all...]
  /src/external/gpl2/grep/dist/lib/posix/
regex.h 325 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. */
467 /* Compile a fastmap for the compiled pattern in BUFFER; used to
  /src/external/gpl3/binutils/dist/include/
xregex2.h 324 the pattern compiler, the fields `buffer', `allocated', `fastmap',
350 /* Pointer to a fastmap, if any, otherwise zero. re_search uses member in struct:re_pattern_buffer
351 the fastmap, if there is one, to skip over impossible
353 char *fastmap;
366 whether or not we should use the fastmap, so we don't set
381 by `re_compile_fastmap' if it updates the fastmap. */
455 /* Compile a fastmap for the compiled pattern in BUFFER; used to
  /src/external/gpl3/binutils.old/dist/include/
xregex2.h 324 the pattern compiler, the fields `buffer', `allocated', `fastmap',
350 /* Pointer to a fastmap, if any, otherwise zero. re_search uses member in struct:re_pattern_buffer
351 the fastmap, if there is one, to skip over impossible
353 char *fastmap;
366 whether or not we should use the fastmap, so we don't set
381 by `re_compile_fastmap' if it updates the fastmap. */
455 /* Compile a fastmap for the compiled pattern in BUFFER; used to
  /src/external/gpl3/gcc.old/dist/include/
xregex2.h 324 the pattern compiler, the fields `buffer', `allocated', `fastmap',
350 /* Pointer to a fastmap, if any, otherwise zero. re_search uses member in struct:re_pattern_buffer
351 the fastmap, if there is one, to skip over impossible
353 char *fastmap;
366 whether or not we should use the fastmap, so we don't set
381 by `re_compile_fastmap' if it updates the fastmap. */
455 /* Compile a fastmap for the compiled pattern in BUFFER; used to
  /src/external/gpl3/gcc/dist/include/
xregex2.h 324 the pattern compiler, the fields `buffer', `allocated', `fastmap',
350 /* Pointer to a fastmap, if any, otherwise zero. re_search uses member in struct:re_pattern_buffer
351 the fastmap, if there is one, to skip over impossible
353 char *fastmap;
366 whether or not we should use the fastmap, so we don't set
381 by `re_compile_fastmap' if it updates the fastmap. */
455 /* Compile a fastmap for the compiled pattern in BUFFER; used to
  /src/external/gpl3/gdb/dist/include/
xregex2.h 324 the pattern compiler, the fields `buffer', `allocated', `fastmap',
350 /* Pointer to a fastmap, if any, otherwise zero. re_search uses member in struct:re_pattern_buffer
351 the fastmap, if there is one, to skip over impossible
353 char *fastmap;
366 whether or not we should use the fastmap, so we don't set
381 by `re_compile_fastmap' if it updates the fastmap. */
455 /* Compile a fastmap for the compiled pattern in BUFFER; used to
  /src/external/gpl3/gdb.old/dist/include/
xregex2.h 324 the pattern compiler, the fields `buffer', `allocated', `fastmap',
350 /* Pointer to a fastmap, if any, otherwise zero. re_search uses member in struct:re_pattern_buffer
351 the fastmap, if there is one, to skip over impossible
353 char *fastmap;
366 whether or not we should use the fastmap, so we don't set
381 by `re_compile_fastmap' if it updates the fastmap. */
455 /* Compile a fastmap for the compiled pattern in BUFFER; used to
  /src/external/gpl2/xcvs/dist/lib/
regcomp.c 27 char *fastmap);
272 char *fastmap = bufp->re_fastmap;
274 memset (fastmap, '\0', sizeof (char) * SBC_MAX);
275 re_compile_fastmap_iter (bufp, dfa->init_state, fastmap);
277 re_compile_fastmap_iter (bufp, dfa->init_state_word, fastmap);
279 re_compile_fastmap_iter (bufp, dfa->init_state_nl, fastmap);
281 re_compile_fastmap_iter (bufp, dfa->init_state_begbuf, fastmap);
291 re_set_fastmap (char *fastmap, bool icase, int ch)
293 fastmap[ch] = 1;
295 fastmap[tolower (ch)] = 1
270 char *fastmap = bufp->re_fastmap; local
657 char *fastmap; local
    [all...]
regexec.c 429 /* Compile fastmap if we haven't yet. */
634 char *fastmap = ((preg->re_fastmap != NULL && preg->re_fastmap_accurate
714 (fastmap
734 /* No fastmap. */
738 /* Fastmap with single-byte translation, match forward. */
740 && !fastmap[t[(unsigned char) string[match_first]]])
745 /* Fastmap without translation, match forward. */
747 && !fastmap[(unsigned char) string[match_first]])
755 if (!fastmap[t ? t[ch] : ch])
762 /* Fastmap without multi-byte translation, match backwards. *
631 char *fastmap = ((preg->re_fastmap != NULL && preg->re_fastmap_accurate local
    [all...]
  /src/external/gpl3/binutils/dist/libiberty/
regex.c 782 /* Print the fastmap in human-readable form. */
786 print_fastmap (char *fastmap)
793 if (fastmap[i++])
797 while (i < (1 << BYTEWIDTH) && fastmap[i])
1160 if (bufp->fastmap_accurate && bufp->fastmap)
1162 printf ("fastmap: ");
1163 print_fastmap (bufp->fastmap);
2287 The `fastmap' and `newline_anchor' fields are neither
4526 /* re_compile_fastmap computes a ``fastmap'' for the compiled pattern in
4527 BUFP. A fastmap records which of the (1 << BYTEWIDTH) possibl
4557 register char *fastmap = bufp->fastmap; local
5019 register char *fastmap = bufp->fastmap; local
    [all...]
  /src/external/gpl3/binutils.old/dist/libiberty/
regex.c 782 /* Print the fastmap in human-readable form. */
786 print_fastmap (char *fastmap)
793 if (fastmap[i++])
797 while (i < (1 << BYTEWIDTH) && fastmap[i])
1160 if (bufp->fastmap_accurate && bufp->fastmap)
1162 printf ("fastmap: ");
1163 print_fastmap (bufp->fastmap);
2287 The `fastmap' and `newline_anchor' fields are neither
4526 /* re_compile_fastmap computes a ``fastmap'' for the compiled pattern in
4527 BUFP. A fastmap records which of the (1 << BYTEWIDTH) possibl
4557 register char *fastmap = bufp->fastmap; local
5019 register char *fastmap = bufp->fastmap; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libiberty/
regex.c 782 /* Print the fastmap in human-readable form. */
786 print_fastmap (char *fastmap)
793 if (fastmap[i++])
797 while (i < (1 << BYTEWIDTH) && fastmap[i])
1160 if (bufp->fastmap_accurate && bufp->fastmap)
1162 printf ("fastmap: ");
1163 print_fastmap (bufp->fastmap);
2287 The `fastmap' and `newline_anchor' fields are neither
4526 /* re_compile_fastmap computes a ``fastmap'' for the compiled pattern in
4527 BUFP. A fastmap records which of the (1 << BYTEWIDTH) possibl
4557 register char *fastmap = bufp->fastmap; local
5019 register char *fastmap = bufp->fastmap; local
    [all...]
  /src/external/gpl3/gcc/dist/libiberty/
regex.c 782 /* Print the fastmap in human-readable form. */
786 print_fastmap (char *fastmap)
793 if (fastmap[i++])
797 while (i < (1 << BYTEWIDTH) && fastmap[i])
1160 if (bufp->fastmap_accurate && bufp->fastmap)
1162 printf ("fastmap: ");
1163 print_fastmap (bufp->fastmap);
2287 The `fastmap' and `newline_anchor' fields are neither
4526 /* re_compile_fastmap computes a ``fastmap'' for the compiled pattern in
4527 BUFP. A fastmap records which of the (1 << BYTEWIDTH) possibl
4557 register char *fastmap = bufp->fastmap; local
5019 register char *fastmap = bufp->fastmap; local
    [all...]
  /src/external/gpl3/gdb/dist/libiberty/
regex.c 782 /* Print the fastmap in human-readable form. */
786 print_fastmap (char *fastmap)
793 if (fastmap[i++])
797 while (i < (1 << BYTEWIDTH) && fastmap[i])
1160 if (bufp->fastmap_accurate && bufp->fastmap)
1162 printf ("fastmap: ");
1163 print_fastmap (bufp->fastmap);
2287 The `fastmap' and `newline_anchor' fields are neither
4526 /* re_compile_fastmap computes a ``fastmap'' for the compiled pattern in
4527 BUFP. A fastmap records which of the (1 << BYTEWIDTH) possibl
4557 register char *fastmap = bufp->fastmap; local
5019 register char *fastmap = bufp->fastmap; local
    [all...]
  /src/external/gpl3/gdb.old/dist/libiberty/
regex.c 782 /* Print the fastmap in human-readable form. */
786 print_fastmap (char *fastmap)
793 if (fastmap[i++])
797 while (i < (1 << BYTEWIDTH) && fastmap[i])
1160 if (bufp->fastmap_accurate && bufp->fastmap)
1162 printf ("fastmap: ");
1163 print_fastmap (bufp->fastmap);
2287 The `fastmap' and `newline_anchor' fields are neither
4526 /* re_compile_fastmap computes a ``fastmap'' for the compiled pattern in
4527 BUFP. A fastmap records which of the (1 << BYTEWIDTH) possibl
4557 register char *fastmap = bufp->fastmap; local
5019 register char *fastmap = bufp->fastmap; local
    [all...]
  /src/external/gpl2/diffutils/dist/lib/
regex.c 786 /* Print the fastmap in human-readable form. */
790 print_fastmap (fastmap)
791 char *fastmap;
798 if (fastmap[i++])
802 while (i < (1 << BYTEWIDTH) && fastmap[i])
1168 if (bufp->fastmap_accurate && bufp->fastmap)
1170 printf ("fastmap: ");
1171 print_fastmap (bufp->fastmap);
2358 The `fastmap' and `newline_anchor' fields are neither
4620 /* re_compile_fastmap computes a ``fastmap'' for the compiled pattern i
4649 register char *fastmap = bufp->fastmap; local
5127 register char *fastmap = bufp->fastmap; local
    [all...]
  /src/external/gpl2/grep/dist/lib/
regex.c 720 /* Print the fastmap in human-readable form. */
723 print_fastmap (fastmap)
724 char *fastmap;
731 if (fastmap[i++])
735 while (i < (1 << BYTEWIDTH) && fastmap[i])
1106 if (bufp->fastmap_accurate && bufp->fastmap)
1108 printf ("fastmap: ");
1109 print_fastmap (bufp->fastmap);
2268 The `fastmap' and `newline_anchor' fields are neither
4537 /* re_compile_fastmap computes a ``fastmap'' for the compiled pattern i
4561 register char *fastmap = bufp->fastmap; local
4959 register char *fastmap = bufp->fastmap; variable
    [all...]

Completed in 155 milliseconds