Symbol: BITSET_WORD_BITS
src/system/libroot/posix/glibc/regex/regcomp.c
1138
int rshift = (ASCII_CHARS % BITSET_WORD_BITS == 0
src/system/libroot/posix/glibc/regex/regcomp.c
1140
: BITSET_WORD_BITS - ASCII_CHARS % BITSET_WORD_BITS);
src/system/libroot/posix/glibc/regex/regcomp.c
1141
for (i = ASCII_CHARS / BITSET_WORD_BITS; i < BITSET_WORDS; ++i)
src/system/libroot/posix/glibc/regex/regcomp.c
1323
if (other_idx < BITSET_WORD_BITS)
src/system/libroot/posix/glibc/regex/regcomp.c
1367
&& (node->token.opr.idx >= BITSET_WORD_BITS
src/system/libroot/posix/glibc/regex/regcomp.c
345
for (j = 0; j < BITSET_WORD_BITS; ++j, ++ch)
src/system/libroot/posix/glibc/regex/regcomp.c
573
[0 ... 0x80 / BITSET_WORD_BITS - 1] = BITSET_WORD_MAX
src/system/libroot/posix/glibc/regex/regcomp.c
575
# if 4 * BITSET_WORD_BITS < ASCII_CHARS
src/system/libroot/posix/glibc/regex/regcomp.c
577
# elif 3 * BITSET_WORD_BITS < ASCII_CHARS
src/system/libroot/posix/glibc/regex/regcomp.c
579
# elif 2 * BITSET_WORD_BITS < ASCII_CHARS
src/system/libroot/posix/glibc/regex/regcomp.c
581
# elif 1 * BITSET_WORD_BITS < ASCII_CHARS
src/system/libroot/posix/glibc/regex/regcomp.c
585
>> (SBC_MAX % BITSET_WORD_BITS == 0
src/system/libroot/posix/glibc/regex/regcomp.c
587
: BITSET_WORD_BITS - SBC_MAX % BITSET_WORD_BITS))
src/system/libroot/posix/glibc/regex/regcomp.c
916
for (j = 0; j < BITSET_WORD_BITS; ++j, ++ch)
src/system/libroot/posix/glibc/regex/regcomp.c
954
if (BITSET_WORD_BITS == 64)
src/system/libroot/posix/glibc/regex/regcomp.c
961
else if (BITSET_WORD_BITS == 32)
src/system/libroot/posix/glibc/regex/regcomp.c
982
for (j = 0; j < BITSET_WORD_BITS; ++j, ++ch)
src/system/libroot/posix/glibc/regex/regex_internal.h
228
# if BITSET_WORD_BITS <= SBC_MAX
src/system/libroot/posix/glibc/regex/regex_internal.h
236
#define BITSET_WORDS ((SBC_MAX + BITSET_WORD_BITS - 1) / BITSET_WORD_BITS)
src/system/libroot/posix/glibc/regex/regex_internal.h
777
set[i / BITSET_WORD_BITS] |= (bitset_word_t) 1 << i % BITSET_WORD_BITS;
src/system/libroot/posix/glibc/regex/regex_internal.h
783
set[i / BITSET_WORD_BITS] &= ~ ((bitset_word_t) 1 << i % BITSET_WORD_BITS);
src/system/libroot/posix/glibc/regex/regex_internal.h
789
return (set[i / BITSET_WORD_BITS] >> i % BITSET_WORD_BITS) & 1;
src/system/libroot/posix/glibc/regex/regex_internal.h
801
memset (set, -1, sizeof (bitset_word_t) * (SBC_MAX / BITSET_WORD_BITS));
src/system/libroot/posix/glibc/regex/regex_internal.h
802
if (SBC_MAX % BITSET_WORD_BITS != 0)
src/system/libroot/posix/glibc/regex/regex_internal.h
804
((bitset_word_t) 1 << SBC_MAX % BITSET_WORD_BITS) - 1;
src/system/libroot/posix/glibc/regex/regex_internal.h
817
for (bitset_i = 0; bitset_i < SBC_MAX / BITSET_WORD_BITS; ++bitset_i)
src/system/libroot/posix/glibc/regex/regex_internal.h
819
if (SBC_MAX % BITSET_WORD_BITS != 0)
src/system/libroot/posix/glibc/regex/regex_internal.h
821
((((bitset_word_t) 1 << SBC_MAX % BITSET_WORD_BITS) - 1)
src/system/libroot/posix/glibc/regex/regexec.c
1925
if (subexp_idx < BITSET_WORD_BITS
src/system/libroot/posix/glibc/regex/regexec.c
1953
if (subexp_idx < BITSET_WORD_BITS)
src/system/libroot/posix/glibc/regex/regexec.c
2407
&& dfa->nodes[node].opr.idx < BITSET_WORD_BITS
src/system/libroot/posix/glibc/regex/regexec.c
3430
for (ch = i * BITSET_WORD_BITS, elem = acceptable[i], mask = 1;
src/system/libroot/posix/glibc/regex/regexec.c
3461
for (ch = i * BITSET_WORD_BITS, elem = acceptable[i], mask = 1;
src/system/libroot/posix/glibc/regex/regexec.c
3555
if (ASCII_CHARS % BITSET_WORD_BITS == 0)