Searched refs:_ISbit (Results 1 – 4 of 4) sorted by relevance
30 #ifndef _ISbit41 # define _ISbit(bit) (1 << (bit)) macro43 # define _ISbit(bit) ((bit) < 8 ? ((1 << (bit)) << 8) : ((1 << (bit)) >> 8))48 _ISupper = _ISbit (0), /* UPPERCASE. */49 _ISlower = _ISbit (1), /* lowercase. */50 _ISalpha = _ISbit (2), /* Alphabetic. */51 _ISdigit = _ISbit (3), /* Numeric. */52 _ISxdigit = _ISbit (4), /* Hexadecimal numeric. */53 _ISspace = _ISbit (5), /* Whitespace. */54 _ISprint = _ISbit (6), /* Printing. */[all …]
47 #define BIT(class) (_ISbit (BITPOS (class)))517 if ((tmp & _ISbit (cls1)) != 0) in ctype_finish()521 int eq = (tmp & _ISbit (cls2)) != 0; in ctype_finish()555 ctype->class256_collection[cnt] |= _ISbit (cls2); in ctype_finish()2805 class256_bit = cnt <= 11 ? _ISbit (cnt) : 0; in ctype_read()2858 int bit = _ISbit (bitpos); in set_one_default()3627 if (ctype->class256_collection[idx] & _ISbit (nr)) in allocate_arrays()
3559 [_ISbit]: Protect definition of bitmasks because they are also9021 * ctype/ctype.h [__BYTE_ORDER == __LITTLE_ENDIAN] (_ISbit):9078 * ctype/ctype.h (_ISbit): New macro, defined dependent on byte order.9079 (_IS* enum): Use _ISbit to produce values.
1871 * ctype/ctype.h (_ISbit): Protect use of parameter with