Symbol: bitset_word_t
src/system/libroot/posix/glibc/regex/regcomp.c
1324
dfa->used_bkref_map &= ~((bitset_word_t) 1 << other_idx);
src/system/libroot/posix/glibc/regex/regcomp.c
1369
& ((bitset_word_t) 1 << node->token.opr.idx))))
src/system/libroot/posix/glibc/regex/regcomp.c
2172
bitset_word_t initial_bkref_map = dfa->completed_bkref_map;
src/system/libroot/posix/glibc/regex/regcomp.c
2183
bitset_word_t accumulated_bkref_map = dfa->completed_bkref_map;
src/system/libroot/posix/glibc/regex/regcomp.c
344
bitset_word_t w = dfa->nodes[node].opr.sbcset[i];
src/system/libroot/posix/glibc/regex/regcomp.c
346
if (w & ((bitset_word_t) 1 << j))
src/system/libroot/posix/glibc/regex/regcomp.c
920
dfa->sb_char[i] |= (bitset_word_t) 1 << j;
src/system/libroot/posix/glibc/regex/regcomp.c
950
bitset_word_t bits0 = 0x00000000;
src/system/libroot/posix/glibc/regex/regcomp.c
951
bitset_word_t bits1 = 0x03ff0000;
src/system/libroot/posix/glibc/regex/regcomp.c
952
bitset_word_t bits2 = 0x87fffffe;
src/system/libroot/posix/glibc/regex/regcomp.c
953
bitset_word_t bits3 = 0x07fffffe;
src/system/libroot/posix/glibc/regex/regcomp.c
984
dfa->word_char[i] |= (bitset_word_t) 1 << j;
src/system/libroot/posix/glibc/regex/regex_internal.h
238
typedef bitset_word_t bitset_t[BITSET_WORDS];
src/system/libroot/posix/glibc/regex/regex_internal.h
239
typedef bitset_word_t *re_bitset_ptr_t;
src/system/libroot/posix/glibc/regex/regex_internal.h
240
typedef const bitset_word_t *re_const_bitset_ptr_t;
src/system/libroot/posix/glibc/regex/regex_internal.h
723
bitset_word_t used_bkref_map;
src/system/libroot/posix/glibc/regex/regex_internal.h
724
bitset_word_t completed_bkref_map;
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
801
memset (set, -1, sizeof (bitset_word_t) * (SBC_MAX / BITSET_WORD_BITS));
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
821
((((bitset_word_t) 1 << SBC_MAX % BITSET_WORD_BITS) - 1)
src/system/libroot/posix/glibc/regex/regexec.c
1927
& ((bitset_word_t) 1 << subexp_idx)))
src/system/libroot/posix/glibc/regex/regexec.c
1955
&= ~((bitset_word_t) 1 << subexp_idx);
src/system/libroot/posix/glibc/regex/regexec.c
2409
& ((bitset_word_t) 1 << dfa->nodes[node].opr.idx)))
src/system/libroot/posix/glibc/regex/regexec.c
3283
bitset_word_t elem, mask;
src/system/libroot/posix/glibc/regex/regexec.c
3589
bitset_word_t any_set = 0;
src/system/libroot/posix/glibc/regex/regexec.c
3608
bitset_word_t any_set = 0;
src/system/libroot/posix/glibc/regex/regexec.c
3634
bitset_word_t has_intersec, not_subset, not_consumed;