Home
last modified time | relevance | path

Searched refs:WordWidth (Results 1 – 1 of 1) sorted by relevance

/openbsd-src/gnu/llvm/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.h58 static unsigned constexpr WordWidth = CHAR_BIT*sizeof(WordType); member
59 static unsigned constexpr NumWords = Capacity/WordWidth;
60 static_assert(NumWords*WordWidth == Capacity,
88 return (Words[T.SimpleTy / WordWidth] >> (T.SimpleTy % WordWidth)) & 1; in count()
92 Words[T.SimpleTy / WordWidth] |= WordType(1) << (T.SimpleTy % WordWidth); in insert()
102 Words[T.SimpleTy / WordWidth] &= ~(WordType(1) << (T.SimpleTy % WordWidth)); in erase()
143 unsigned SkipWords = P / WordWidth; in find_from_pos()
144 unsigned SkipBits = P % WordWidth; in find_from_pos()
145 unsigned Count = SkipWords * WordWidth; in find_from_pos()
151 W &= maskLeadingOnes<WordType>(WordWidth-SkipBits); in find_from_pos()
[all …]