Home
last modified time | relevance | path

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

/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_exec.c2266 prev_is_word = MAX_255(eptr[-1]) in match()
2290 cur_is_word = MAX_255(*eptr) in match()
4796 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_digit) != 0) in match()
4810 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_digit) == 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()
4852 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_word) != 0) in match()
4866 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_word) == 0) in match()
6100 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_digit) != 0) break; in match()
6126 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_space) != 0) break; in match()
[all …]
H A Dpcre_compile.c1061 if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0 in check_escape()
1062 && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0 in check_escape()
1063 && MAX_255(ptr[3]) && (digitab[ptr[3]] & ctype_xdigit) != 0 in check_escape()
1064 && MAX_255(ptr[4]) && (digitab[ptr[4]] & ctype_xdigit) != 0) in check_escape()
1313 if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0 in check_escape()
1314 && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0) in check_escape()
1350 while (MAX_255(*ptr) && (digitab[*ptr] & ctype_xdigit) != 0) in check_escape()
5656 while (MAX_255(*p) && (cd->ctypes[*p] & ctype_space) != 0) p++; in compile_branch()
6824 if (!MAX_255(*ptr) || (cd->ctypes[*ptr] & ctype_word) == 0) in compile_branch()
6830 while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_word) != 0) in compile_branch()
[all …]
H A Dpcre_internal.h269 #define MAX_255(c) 1 macro
283 #define MAX_255(c) ((c) <= 255u) macro
284 #define TABLE_GET(c, table, default) (MAX_255(c)? ((table)[c]):(default))
291 #define MAX_255(c) ((c) <= 255u) macro
292 #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 106 milliseconds