Lines Matching refs:MAX_255
2340 prev_is_word = MAX_255(eptr[-1])
2366 cur_is_word = MAX_255(*eptr)
4886 if (MAX_255(*eptr) && (mb->ctypes[*eptr] & ctype_digit) != 0)
4900 if (!MAX_255(*eptr) || (mb->ctypes[*eptr] & ctype_digit) == 0)
4914 if (MAX_255(*eptr) && (mb->ctypes[*eptr] & ctype_space) != 0)
4928 if (!MAX_255(*eptr) || (mb->ctypes[*eptr] & ctype_space) == 0)
4942 if (MAX_255(*eptr) && (mb->ctypes[*eptr] & ctype_word) != 0)
4956 if (!MAX_255(*eptr) || (mb->ctypes[*eptr] & ctype_word) == 0)
5459 if (MAX_255(c) && (mb->ctypes[c] & ctype_digit) != 0) RRETURN(MATCH_NOMATCH);
5463 if (!MAX_255(c) || (mb->ctypes[c] & ctype_digit) == 0) RRETURN(MATCH_NOMATCH);
5467 if (MAX_255(c) && (mb->ctypes[c] & ctype_space) != 0) RRETURN(MATCH_NOMATCH);
5471 if (!MAX_255(c) || (mb->ctypes[c] & ctype_space) == 0) RRETURN(MATCH_NOMATCH);
5475 if (MAX_255(c) && (mb->ctypes[c] & ctype_word) != 0) RRETURN(MATCH_NOMATCH);
5479 if (!MAX_255(c) || (mb->ctypes[c] & ctype_word) == 0) RRETURN(MATCH_NOMATCH);
6198 if (MAX_255(*eptr) && (mb->ctypes[*eptr] & ctype_digit) != 0) break;
6211 if (!MAX_255(*eptr) || (mb->ctypes[*eptr] & ctype_digit) == 0) break;
6224 if (MAX_255(*eptr) && (mb->ctypes[*eptr] & ctype_space) != 0) break;
6237 if (!MAX_255(*eptr) || (mb->ctypes[*eptr] & ctype_space) == 0) break;
6250 if (MAX_255(*eptr) && (mb->ctypes[*eptr] & ctype_word) != 0) break;
6263 if (!MAX_255(*eptr) || (mb->ctypes[*eptr] & ctype_word) == 0) break;