Home
last modified time | relevance | path

Searched refs:ctype_space (Results 1 – 7 of 7) sorted by relevance

/external/pcre/dist/
Dpcre_maketables.c138 if (isspace(i)) x += ctype_space; in pcre_maketables()
Ddftables.c181 ctype_space, ctype_letter, ctype_digit, ctype_xdigit, ctype_word, in main()
Dpcre_exec.c2392 (md->ctypes[c] & ctype_space) != 0 in match()
2409 (md->ctypes[c] & ctype_space) == 0 in match()
4566 if (cc < 128 && (md->ctypes[cc] & ctype_space) != 0) in match()
4583 if (cc >= 128 || (md->ctypes[cc] & ctype_space) == 0) in match()
4824 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_space) != 0) in match()
4838 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_space) == 0) in match()
5238 if (c < 256 && (md->ctypes[c] & ctype_space) != 0) in match()
5243 if (c >= 256 || (md->ctypes[c] & ctype_space) == 0) in match()
5377 if (MAX_255(c) && (md->ctypes[c] & ctype_space) != 0) RRETURN(MATCH_NOMATCH); in match()
5381 if (!MAX_255(c) || (md->ctypes[c] & ctype_space) == 0) RRETURN(MATCH_NOMATCH); in match()
[all …]
Dpcre_dfa_exec.c265 ctype_space, ctype_space,
273 ctype_space, 0,
Dpcre_compile.c3528 if (chr < 256 && (cd->ctypes[chr] & ctype_space) != 0) return FALSE; in compare_opcodes()
3532 if (chr > 255 || (cd->ctypes[chr] & ctype_space) == 0) return FALSE; in compare_opcodes()
4683 while (MAX_255(c) && (cd->ctypes[c] & ctype_space) != 0) c = *(++ptr); in compile_branch()
5656 while (MAX_255(*p) && (cd->ctypes[*p] & ctype_space) != 0) p++; in compile_branch()
Dpcre_internal.h2586 #define ctype_space 0x01 macro
Dpcre_jit_compile.c5344 OP2(SLJIT_AND | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, ctype_space); in compile_char1_matchingpath()