Home
last modified time | relevance | path

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

/PHP-8.1/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.c3260 if (MAX_255(*Feptr) && (mb->ctypes[*Feptr] & ctype_digit) != 0) in match()
3274 if (!MAX_255(*Feptr) || (mb->ctypes[*Feptr] & ctype_digit) == 0) in match()
3288 if (MAX_255(*Feptr) && (mb->ctypes[*Feptr] & ctype_space) != 0) in match()
3316 if (MAX_255(*Feptr) && (mb->ctypes[*Feptr] & ctype_word) != 0) in match()
3330 if (!MAX_255(*Feptr) || (mb->ctypes[*Feptr] & ctype_word) == 0) in match()
3835 if (MAX_255(fc) && (mb->ctypes[fc] & ctype_digit) != 0) in match()
3840 if (!MAX_255(fc) || (mb->ctypes[fc] & ctype_digit) == 0) in match()
3845 if (MAX_255(fc) && (mb->ctypes[fc] & ctype_space) != 0) in match()
3850 if (!MAX_255(fc) || (mb->ctypes[fc] & ctype_space) == 0) in match()
3855 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)
2123 else if (MAX_255(c) && (cb->ctypes[c] & ctype_letter) != 0) in get_ucp()
2355 while (ptr < ptrend && MAX_255(*ptr) && (cb->ctypes[*ptr] & ctype_word) != 0) in read_name()
2854 ok = MAX_255(ptr[1]) && (cb->ctypes[ptr[1]] & ctype_lcletter) != 0; in parse_regex()
H A Dpcre2_jit_compile.c3461 return MAX_255(c) ? common->fcc[c] != c : FALSE; in char_has_othercase()

Completed in 81 milliseconds