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

/freebsd-10.1-release/contrib/libgnuregex/
H A Dregex_internal.h140 #define BITSET_WORD_BITS (sizeof (bitset_word_t) * CHAR_BIT) macro
142 #define BITSET_WORDS (SBC_MAX / BITSET_WORD_BITS)
148 (set[i / BITSET_WORD_BITS] |= (bitset_word_t) 1 << i % BITSET_WORD_BITS)
150 (set[i / BITSET_WORD_BITS] &= ~((bitset_word_t) 1 << i % BITSET_WORD_BITS))
152 (set[i / BITSET_WORD_BITS] & ((bitset_word_t) 1 << i % BITSET_WORD_BITS))
H A Dregcomp.c346 for (j = 0; j < BITSET_WORD_BITS; ++j, ++ch)
583 [0 ... 0x80 / BITSET_WORD_BITS - 1] = BITSET_WORD_MAX
906 for (j = 0; j < BITSET_WORD_BITS; ++j, ++ch)
968 for (int j = 0; j < BITSET_WORD_BITS; ++j, ++ch)
1122 assert (0x80 % BITSET_WORD_BITS == 0);
1123 for (i = 0x80 / BITSET_WORD_BITS; i < BITSET_WORDS; ++i)
1302 if (other_idx < BITSET_WORD_BITS)
1346 && (node->token.opr.idx >= BITSET_WORD_BITS
H A Dregexec.c1974 if (subexp_idx < BITSET_WORD_BITS
2002 if (subexp_idx < BITSET_WORD_BITS)
2463 && dfa->nodes[node].opr.idx < BITSET_WORD_BITS
3482 for (ch = i * BITSET_WORD_BITS, elem = acceptable[i], mask = 1;
3513 for (ch = i * BITSET_WORD_BITS, elem = acceptable[i], mask = 1;

Completed in 64 milliseconds