Home
last modified time | relevance | path

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

/external/pcre/dist/
Dpcre_exec.c2266 prev_is_word = MAX_255(eptr[-1]) in match()
2290 cur_is_word = MAX_255(*eptr) in match()
4796 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_digit) != 0) in match()
4810 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_digit) == 0) in match()
4824 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_space) != 0) in match()
4838 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_space) == 0) in match()
4852 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_word) != 0) in match()
4866 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_word) == 0) in match()
5369 if (MAX_255(c) && (md->ctypes[c] & ctype_digit) != 0) RRETURN(MATCH_NOMATCH); in match()
5373 if (!MAX_255(c) || (md->ctypes[c] & ctype_digit) == 0) RRETURN(MATCH_NOMATCH); in match()
[all …]
Dpcre_compile.c1034 else if (c < CHAR_a || (!MAX_255(c) || (ebcdic_chartab[c] & 0x0E) == 0)) {} in check_escape()
1061 if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0 in check_escape()
1062 && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0 in check_escape()
1063 && MAX_255(ptr[3]) && (digitab[ptr[3]] & ctype_xdigit) != 0 in check_escape()
1064 && MAX_255(ptr[4]) && (digitab[ptr[4]] & ctype_xdigit) != 0) in check_escape()
1313 if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0 in check_escape()
1314 && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0) in check_escape()
1350 while (MAX_255(*ptr) && (digitab[*ptr] & ctype_xdigit) != 0) in check_escape()
1378 while (MAX_255(*ptr) && (digitab[*ptr] & ctype_xdigit) != 0) ptr++; in check_escape()
1400 while (i++ < 2 && MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0) in check_escape()
[all …]
Dpcre_internal.h265 #define MAX_255(c) 1 macro
279 #define MAX_255(c) ((c) <= 255u) macro
280 #define TABLE_GET(c, table, default) (MAX_255(c)? ((table)[c]):(default))
287 #define MAX_255(c) ((c) <= 255u) macro
288 #define TABLE_GET(c, table, default) (MAX_255(c)? ((table)[c]):(default))
Dpcre_jit_compile.c2392 return MAX_255(c) ? common->fcc[c] != c : FALSE; in char_has_othercase()