Home
last modified time | relevance | path

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

/external/pcre/dist2/src/
Dpcre2_intmodedep.h71 #undef MAX_255
210 #define MAX_255(c) TRUE macro
218 #define MAX_255(c) ((c) <= 255u) macro
221 #define TABLE_GET(c, table, default) (MAX_255(c)? ((table)[c]):(default))
Dpcre2_match.c2340 prev_is_word = MAX_255(eptr[-1]) in match()
2366 cur_is_word = MAX_255(*eptr) in match()
4886 if (MAX_255(*eptr) && (mb->ctypes[*eptr] & ctype_digit) != 0) in match()
4900 if (!MAX_255(*eptr) || (mb->ctypes[*eptr] & ctype_digit) == 0) in match()
4914 if (MAX_255(*eptr) && (mb->ctypes[*eptr] & ctype_space) != 0) in match()
4928 if (!MAX_255(*eptr) || (mb->ctypes[*eptr] & ctype_space) == 0) in match()
4942 if (MAX_255(*eptr) && (mb->ctypes[*eptr] & ctype_word) != 0) in match()
4956 if (!MAX_255(*eptr) || (mb->ctypes[*eptr] & ctype_word) == 0) in match()
5459 if (MAX_255(c) && (mb->ctypes[c] & ctype_digit) != 0) RRETURN(MATCH_NOMATCH); in match()
5463 if (!MAX_255(c) || (mb->ctypes[c] & ctype_digit) == 0) RRETURN(MATCH_NOMATCH); in match()
[all …]
Dpcre2_compile.c72 #define XDIGIT(c) (MAX_255(c)? xdigitab[c] : 0xff)
2360 else if (MAX_255(c) && (cb->ctypes[c] & ctype_letter) != 0) in get_ucp()
3063 while (MAX_255(x) && (cb->ctypes[x] & ctype_space) != 0) x = *(++ptr); in process_verb_name()
3177 while (MAX_255(*ptr) && (cb->ctypes[*ptr] & ctype) != 0) \
3280 while (MAX_255(c) && (cb->ctypes[c] & ctype_space) != 0) c = *(++ptr); in scan_for_captures()
3435 while (MAX_255(*ptr) && (cb->ctypes[*ptr] & ctype_word) != 0) ptr++; in scan_for_captures()
3675 if (MAX_255(*ptr) && (cb->ctypes[*ptr] & ctype_word) == 0) in scan_for_captures()
4090 while (MAX_255(c) && (cb->ctypes[c] & ctype_space) != 0) c = *(++ptr); in compile_branch()
5121 while (MAX_255(*ptr) && (cb->ctypes[*ptr] & ctype_space) != 0) ptr++; in compile_branch()
5883 || (MAX_255(ptr[1]) && ((cb->ctypes[ptr[1]] & ctype_letter) != 0)))) in compile_branch()
[all …]
Dpcre2_substitute.c483 while (MAX_255(next) && (ctypes[next] & ctype_word) != 0) in pcre2_substitute()
Dpcre2_study.c765 else if (MAX_255(c)) SET_BIT(re->tables[fcc_offset + c]); in set_table_bit()
Dpcre2_jit_compile.c2621 return MAX_255(c) ? common->fcc[c] != c : FALSE; in char_has_othercase()