Home
last modified time | relevance | path

Searched refs:MAX_255 (Results 1 – 4 of 4) sorted by relevance

/PHP-7.0/ext/pcre/pcrelib/
H A Dpcre_exec.c2264 prev_is_word = MAX_255(eptr[-1]) in match()
2288 cur_is_word = MAX_255(*eptr) in match()
4794 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_digit) != 0) in match()
4808 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_digit) == 0) in match()
4822 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_space) != 0) in match()
4836 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_space) == 0) in match()
4850 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_word) != 0) in match()
4864 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_word) == 0) in match()
6098 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_digit) != 0) break; in match()
6124 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_space) != 0) break; in match()
[all …]
H A Dpcre_compile.c1059 if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0 in check_escape()
1060 && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0 in check_escape()
1061 && MAX_255(ptr[3]) && (digitab[ptr[3]] & ctype_xdigit) != 0 in check_escape()
1062 && MAX_255(ptr[4]) && (digitab[ptr[4]] & ctype_xdigit) != 0) in check_escape()
1311 if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0 in check_escape()
1312 && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0) in check_escape()
1348 while (MAX_255(*ptr) && (digitab[*ptr] & ctype_xdigit) != 0) in check_escape()
5654 while (MAX_255(*p) && (cd->ctypes[*p] & ctype_space) != 0) p++; in compile_branch()
6822 if (!MAX_255(*ptr) || (cd->ctypes[*ptr] & ctype_word) == 0) in compile_branch()
6828 while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_word) != 0) in compile_branch()
[all …]
H A Dpcre_internal.h265 #define MAX_255(c) 1 macro
279 #define MAX_255(c) ((c) <= 255u) macro
280 #define TABLE_GET(c, table, default) (MAX_255(c)? ((table)[c]):(default))
287 #define MAX_255(c) ((c) <= 255u) macro
288 #define TABLE_GET(c, table, default) (MAX_255(c)? ((table)[c]):(default))
H A Dpcre_jit_compile.c2392 return MAX_255(c) ? common->fcc[c] != c : FALSE; in char_has_othercase()

Completed in 81 milliseconds