Home
last modified time | relevance | path

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

/PHP-5.3/ext/pcre/pcrelib/
H A Dpcre_compile.c831 if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0 in check_escape()
832 && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0 in check_escape()
833 && MAX_255(ptr[3]) && (digitab[ptr[3]] & ctype_xdigit) != 0 in check_escape()
834 && MAX_255(ptr[4]) && (digitab[ptr[4]] & ctype_xdigit) != 0) in check_escape()
1045 if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0 in check_escape()
1046 && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0) in check_escape()
1070 while (MAX_255(*pt) && (digitab[*pt] & ctype_xdigit) != 0) in check_escape()
3101 else if (!MAX_255(*ptr) || (cd->ctypes[*ptr] & ctype_meta) == 0) in check_auto_possessive()
5822 while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_word) != 0) in compile_branch()
6800 if (!MAX_255(*p)) { is_a_number = FALSE; break; } in compile_branch()
[all …]
H A Dpcre_exec.c2244 prev_is_word = MAX_255(eptr[-1]) in match()
2268 cur_is_word = MAX_255(*eptr) in match()
4692 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_digit) != 0) in match()
4706 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_digit) == 0) in match()
4720 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_space) != 0) in match()
4734 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_space) == 0) in match()
4748 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_word) != 0) in match()
4762 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_word) == 0) in match()
5977 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_digit) != 0) break; in match()
6003 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_space) != 0) break; in match()
[all …]
H A Dpcre_internal.h259 #define MAX_255(c) 1 macro
273 #define MAX_255(c) ((c) <= 255u) macro
274 #define TABLE_GET(c, table, default) (MAX_255(c)? ((table)[c]):(default))
281 #define MAX_255(c) ((c) <= 255u) macro
282 #define TABLE_GET(c, table, default) (MAX_255(c)? ((table)[c]):(default))

Completed in 41 milliseconds