Home
last modified time | relevance | path

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

/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_intmodedep.h72 #undef MAX_255
212 #define MAX_255(c) TRUE macro
224 #define MAX_255(c) ((c) <= 255u) macro
227 #define TABLE_GET(c, table, default) (MAX_255(c)? ((table)[c]):(default))
H A Dpcre2_match.c3258 if (MAX_255(*Feptr) && (mb->ctypes[*Feptr] & ctype_digit) != 0) in match()
3272 if (!MAX_255(*Feptr) || (mb->ctypes[*Feptr] & ctype_digit) == 0) in match()
3286 if (MAX_255(*Feptr) && (mb->ctypes[*Feptr] & ctype_space) != 0) in match()
3314 if (MAX_255(*Feptr) && (mb->ctypes[*Feptr] & ctype_word) != 0) in match()
3328 if (!MAX_255(*Feptr) || (mb->ctypes[*Feptr] & ctype_word) == 0) in match()
3833 if (MAX_255(fc) && (mb->ctypes[fc] & ctype_digit) != 0) in match()
3838 if (!MAX_255(fc) || (mb->ctypes[fc] & ctype_digit) == 0) in match()
3843 if (MAX_255(fc) && (mb->ctypes[fc] & ctype_space) != 0) in match()
3848 if (!MAX_255(fc) || (mb->ctypes[fc] & ctype_space) == 0) in match()
3853 if (MAX_255(fc) && (mb->ctypes[fc] & ctype_word) != 0) in match()
[all …]
H A Dpcre2_substitute.c582 while (MAX_255(next) && (ctypes[next] & ctype_word) != 0) in pcre2_substitute()
H A Dpcre2_study.c838 if (MAX_255(c)) SET_BIT(re->tables[fcc_offset + c]); in set_table_bit()
H A Dpcre2_compile.c77 #define XDIGIT(c) (MAX_255(c)? xdigitab[c] : 0xff)
2102 else if (MAX_255(c) && (cb->ctypes[c] & ctype_letter) != 0) in get_ucp()
2334 while (ptr < ptrend && MAX_255(*ptr) && (cb->ctypes[*ptr] & ctype_word) != 0) in read_name()
2833 ok = MAX_255(ptr[1]) && (cb->ctypes[ptr[1]] & ctype_lcletter) != 0; in parse_regex()
H A Dpcre2_jit_compile.c3465 return MAX_255(c) ? common->fcc[c] != c : FALSE; in char_has_othercase()

Completed in 91 milliseconds