Home
last modified time | relevance | path

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

/PHP-8.3/ext/pcre/pcre2lib/
H A Dpcre2_maketables.c145 if (isalnum(i) || i == '_') x += ctype_word;
H A Dpcre2_match.c2309 if (CHMAX_255(fc) && (mb->ctypes[fc] & ctype_word) != 0) in match()
2321 if (!CHMAX_255(fc) || (mb->ctypes[fc] & ctype_word) == 0) in match()
3151 if (cc < 128 && (mb->ctypes[cc] & ctype_word) != 0) in match()
3168 if (cc >= 128 || (mb->ctypes[cc] & ctype_word) == 0) in match()
3407 if (MAX_255(*Feptr) && (mb->ctypes[*Feptr] & ctype_word) != 0) in match()
3864 if (fc < 256 && (mb->ctypes[fc] & ctype_word) != 0) in match()
3869 if (fc >= 256 || (mb->ctypes[fc] & ctype_word) == 0) in match()
4008 if (MAX_255(fc) && (mb->ctypes[fc] & ctype_word) != 0) in match()
4013 if (!MAX_255(fc) || (mb->ctypes[fc] & ctype_word) == 0) in match()
4584 if (fc < 256 && (mb->ctypes[fc] & ctype_word) != 0) break; in match()
[all …]
H A Dpcre2_auto_possess.c1006 if (chr < 255 && (cb->ctypes[chr] & ctype_word) != 0) return FALSE; in compare_opcodes()
1010 if (chr > 255 || (cb->ctypes[chr] & ctype_word) == 0) return FALSE; in compare_opcodes()
H A Dpcre2_dfa_match.c277 ctype_word, ctype_word,
285 ctype_word, 0,
1125 left_word = d < 256 && (ctypes[d] & ctype_word) != 0; in internal_dfa_match()
1150 right_word = c < 256 && (ctypes[c] & ctype_word) != 0; in internal_dfa_match()
H A Dpcre2_substitute.c604 while (MAX_255(next) && (ctypes[next] & ctype_word) != 0) in pcre2_substitute()
H A Dpcre2_internal.h583 #define ctype_word 0x10 /* alphanumeric or '_' */ macro
H A Dpcre2_compile.c2442 while (ptr < ptrend && MAX_255(*ptr) && (cb->ctypes[*ptr] & ctype_word) != 0) in read_name()
H A Dpcre2_jit_compile.c6632 SLJIT_COMPILE_ASSERT(ctype_word == 0x10, ctype_word_must_be_16); in check_wordboundary()
8782 OP2U(SLJIT_AND | SLJIT_SET_Z, TMP1, 0, SLJIT_IMM, ctype_word); in compile_char1_matchingpath()

Completed in 143 milliseconds