Home | History | Annotate | Download | only in src

Lines Matching refs:ctype_digit

2436        (mb->ctypes[c] & ctype_digit) != 0
2453 (mb->ctypes[c] & ctype_digit) == 0
4624 if (c < 128 && (mb->ctypes[c] & ctype_digit) != 0)
4639 if (cc >= 128 || (mb->ctypes[cc] & ctype_digit) == 0)
4886 if (MAX_255(*eptr) && (mb->ctypes[*eptr] & ctype_digit) != 0)
4900 if (!MAX_255(*eptr) || (mb->ctypes[*eptr] & ctype_digit) == 0)
5318 if (c < 256 && (mb->ctypes[c] & ctype_digit) != 0)
5323 if (c >= 256 || (mb->ctypes[c] & ctype_digit) == 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);
5940 if (c < 256 && (mb->ctypes[c] & ctype_digit) != 0) break;
5955 if (c >= 256 ||(mb->ctypes[c] & ctype_digit) == 0) break;
6198 if (MAX_255(*eptr) && (mb->ctypes[*eptr] & ctype_digit) != 0) break;
6211 if (!MAX_255(*eptr) || (mb->ctypes[*eptr] & ctype_digit) == 0) break;