Home
last modified time | relevance | path

Searched refs:ctype_word (Results 1 – 6 of 6) sorted by relevance

/PHP-7.1/ext/pcre/pcrelib/
H A Dpcre_maketables.c140 if (isalnum(i) || i == '_') x += ctype_word; in pcre_maketables()
H A Ddftables.c179 ctype_space, ctype_letter, ctype_digit, ctype_xdigit, ctype_word, in main()
H A Dpcre_exec.c2213 prev_is_word = c < 256 && (md->ctypes[c] & ctype_word) != 0; in match()
2237 cur_is_word = c < 256 && (md->ctypes[c] & ctype_word) != 0; in match()
2265 && ((md->ctypes[eptr[-1]] & ctype_word) != 0); in match()
2289 && ((md->ctypes[*eptr] & ctype_word) != 0); in match()
2424 (md->ctypes[c] & ctype_word) != 0 in match()
2441 (md->ctypes[c] & ctype_word) == 0 in match()
4598 if (cc < 128 && (md->ctypes[cc] & ctype_word) != 0) in match()
4615 if (cc >= 128 || (md->ctypes[cc] & ctype_word) == 0) in match()
5246 if (c < 256 && (md->ctypes[c] & ctype_word) != 0) in match()
5251 if (c >= 256 || (md->ctypes[c] & ctype_word) == 0) in match()
[all …]
H A Dpcre_compile.c3534 if (chr < 255 && (cd->ctypes[chr] & ctype_word) != 0) return FALSE; in compare_opcodes()
3538 if (chr > 255 || (cd->ctypes[chr] & ctype_word) == 0) return FALSE; in compare_opcodes()
6831 if (!MAX_255(*ptr) || (cd->ctypes[*ptr] & ctype_word) == 0) in compile_branch()
6837 while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_word) != 0) in compile_branch()
7025 if (MAX_255(ptr[1]) && (cd->ctypes[ptr[1]] & ctype_word) != 0) in compile_branch()
7098 while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_word) != 0) ptr++; in compile_branch()
7216 while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_word) != 0) ptr++; in compile_branch()
H A Dpcre_internal.h2590 #define ctype_word 0x10 /* alphanumeric or '_' */ macro
H A Dpcre_jit_compile.c4148 SLJIT_COMPILE_ASSERT(ctype_word == 0x10, ctype_word_must_be_16); in check_wordboundary()
5357 OP2(SLJIT_AND | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, ctype_word); in compile_char1_matchingpath()

Completed in 85 milliseconds