Lines Matching refs:Words
72 for (WordType W : Words) in size()
77 void clear() { std::memset(Words.data(), 0, NumWords * sizeof(WordType)); } in clear()
80 for (WordType W : Words) in empty()
87 return (Words[T.SimpleTy / WordWidth] >> (T.SimpleTy % WordWidth)) & 1; in count()
91 Words[T.SimpleTy / WordWidth] |= WordType(1) << (T.SimpleTy % WordWidth); in insert()
96 Words[i] |= S.Words[i]; in insert()
101 Words[T.SimpleTy / WordWidth] &= ~(WordType(1) << (T.SimpleTy % WordWidth)); in erase()
147 WordType W = Set->Words[SkipWords]; in find_from_pos()
156 WordType W = Set->Words[i]; in find_from_pos()
175 return Words == S.Words;
182 std::array<WordType, NumWords> Words; member