HomeSort by relevance Sort by last modified time
    Searched defs:fastmap (Results 1 - 5 of 5) sorted by null

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
regex.h 337 the pattern compiler, the fields `buffer', `allocated', `fastmap',
362 /* Pointer to a fastmap, if any, otherwise zero. re_search uses the member in struct:re_pattern_buffer
363 fastmap, if there is one, to skip over impossible starting points
365 char *fastmap;
378 not we should use the fastmap, so we don't set this absolutely
392 by `re_compile_fastmap' if it updates the fastmap. */
458 /* Compile a fastmap for the compiled pattern in BUFFER; used to
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
regex.h 337 the pattern compiler, the fields `buffer', `allocated', `fastmap',
362 /* Pointer to a fastmap, if any, otherwise zero. re_search uses the member in struct:re_pattern_buffer
363 fastmap, if there is one, to skip over impossible starting points
365 char *fastmap;
378 not we should use the fastmap, so we don't set this absolutely
392 by `re_compile_fastmap' if it updates the fastmap. */
458 /* Compile a fastmap for the compiled pattern in BUFFER; used to
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
regex.h 337 the pattern compiler, the fields `buffer', `allocated', `fastmap',
362 /* Pointer to a fastmap, if any, otherwise zero. re_search uses the member in struct:re_pattern_buffer
363 fastmap, if there is one, to skip over impossible starting points
365 char *fastmap;
378 not we should use the fastmap, so we don't set this absolutely
392 by `re_compile_fastmap' if it updates the fastmap. */
458 /* Compile a fastmap for the compiled pattern in BUFFER; used to
  /ndk/sources/host-tools/sed-4.2.1/lib/
regcomp.c 27 char *fastmap);
282 char *fastmap = bufp->fastmap;
284 memset (fastmap, '\0', sizeof (char) * SBC_MAX);
285 re_compile_fastmap_iter (bufp, dfa->init_state, fastmap);
287 re_compile_fastmap_iter (bufp, dfa->init_state_word, fastmap);
289 re_compile_fastmap_iter (bufp, dfa->init_state_nl, fastmap);
291 re_compile_fastmap_iter (bufp, dfa->init_state_begbuf, fastmap);
301 re_set_fastmap (char *fastmap, bool icase, int ch)
303 fastmap[ch] = 1
280 char *fastmap = bufp->fastmap; local
698 char *fastmap; local
    [all...]
regexec.c 449 /* Compile fastmap if we haven't yet. */
450 if (start < last_start && bufp->fastmap != NULL && !bufp->fastmap_accurate)
668 char *fastmap = ((preg->fastmap != NULL && preg->fastmap_accurate
670 ? preg->fastmap : NULL);
754 (fastmap
774 /* No fastmap. */
778 /* Fastmap with single-byte translation, match forward. */
780 && !fastmap[t[(unsigned char) string[match_first]]])
785 /* Fastmap without translation, match forward. *
665 char *fastmap = ((preg->fastmap != NULL && preg->fastmap_accurate local
    [all...]

Completed in 1267 milliseconds