Home | History | Annotate | Download | only in lib

Lines Matching refs:SBC_MAX

107 #define SBC_MAX (UCHAR_MAX + 1)
185 # define BITSET_WORD_BITS 257 /* any value > SBC_MAX will do here */
186 # if BITSET_WORD_BITS <= SBC_MAX
187 # error "Invalid SBC_MAX"
194 #define BITSET_WORDS ((SBC_MAX + BITSET_WORD_BITS - 1) / BITSET_WORD_BITS)
766 memset (set, -1, sizeof (bitset_word_t) * (SBC_MAX / BITSET_WORD_BITS));
767 if (SBC_MAX % BITSET_WORD_BITS != 0)
769 ((bitset_word_t) 1 << SBC_MAX % BITSET_WORD_BITS) - 1;
782 for (bitset_i = 0; bitset_i < SBC_MAX / BITSET_WORD_BITS; ++bitset_i)
784 if (SBC_MAX % BITSET_WORD_BITS != 0)
786 ((((bitset_word_t) 1 << SBC_MAX % BITSET_WORD_BITS) - 1)