Searched refs:MAX_255 (Results 1 - 3 of 3) sorted by relevance

/barrelfish-2018-10-04/lib/pcre/
H A Dpcre_internal.h254 The MAX_255 macro checks whether its pcre_uchar input is less than 256.
265 #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))
H A Dpcre_compile.c1037 else if (c < CHAR_a || (!MAX_255(c) || (ebcdic_chartab[c] & 0x0E) == 0)) {}
1064 if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0
1065 && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0
1066 && MAX_255(ptr[3]) && (digitab[ptr[3]] & ctype_xdigit) != 0
1067 && MAX_255(ptr[4]) && (digitab[ptr[4]] & ctype_xdigit) != 0)
1316 if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0
1317 && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0)
1353 while (MAX_255(*ptr) && (digitab[*ptr] & ctype_xdigit) != 0)
1381 while (MAX_255(*ptr) && (digitab[*ptr] & ctype_xdigit) != 0) ptr++;
1403 while (i++ < 2 && MAX_255(pt
[all...]
H A Dpcre_exec.c2266 prev_is_word = MAX_255(eptr[-1])
2290 cur_is_word = MAX_255(*eptr)
4796 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_digit) != 0)
4810 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_digit) == 0)
4824 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_space) != 0)
4838 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_space) == 0)
4852 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_word) != 0)
4866 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_word) == 0)
5369 if (MAX_255(c) && (md->ctypes[c] & ctype_digit) != 0) RRETURN(MATCH_NOMATCH);
5373 if (!MAX_255(
[all...]

Completed in 59 milliseconds