Home
last modified time | relevance | path

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

/external/pcre/dist2/src/
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))
Dpcre2_match.c3185 if (MAX_255(*Feptr) && (mb->ctypes[*Feptr] & ctype_digit) != 0) in match()
3199 if (!MAX_255(*Feptr) || (mb->ctypes[*Feptr] & ctype_digit) == 0) in match()
3213 if (MAX_255(*Feptr) && (mb->ctypes[*Feptr] & ctype_space) != 0) in match()
3227 if (!MAX_255(*Feptr) || (mb->ctypes[*Feptr] & ctype_space) == 0) in match()
3241 if (MAX_255(*Feptr) && (mb->ctypes[*Feptr] & ctype_word) != 0) in match()
3255 if (!MAX_255(*Feptr) || (mb->ctypes[*Feptr] & ctype_word) == 0) in match()
3760 if (MAX_255(fc) && (mb->ctypes[fc] & ctype_digit) != 0) in match()
3765 if (!MAX_255(fc) || (mb->ctypes[fc] & ctype_digit) == 0) in match()
3770 if (MAX_255(fc) && (mb->ctypes[fc] & ctype_space) != 0) in match()
3775 if (!MAX_255(fc) || (mb->ctypes[fc] & ctype_space) == 0) in match()
[all …]
Dpcre2_substitute.c513 while (MAX_255(next) && (ctypes[next] & ctype_word) != 0) in pcre2_substitute()
Dpcre2_study.c808 if (MAX_255(c)) SET_BIT(re->tables[fcc_offset + c]); in set_table_bit()
Dpcre2_compile.c77 #define XDIGIT(c) (MAX_255(c)? xdigitab[c] : 0xff)
1976 else if (MAX_255(c) && (cb->ctypes[c] & ctype_letter) != 0) in get_ucp()
2170 while (ptr < ptrend && MAX_255(*ptr) && (cb->ctypes[*ptr] & ctype) != 0) in read_name()
Dpcre2_jit_compile.c2986 return MAX_255(c) ? common->fcc[c] != c : FALSE; in char_has_othercase()