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

/freebsd-current/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.h61 static unsigned constexpr WordWidth = CHAR_BIT*sizeof(WordType); member in struct:llvm::MachineValueTypeSet
62 static unsigned constexpr NumWords = Capacity/WordWidth;
63 static_assert(NumWords*WordWidth == Capacity,
64 "Capacity should be a multiple of WordWidth");
91 return (Words[T.SimpleTy / WordWidth] >> (T.SimpleTy % WordWidth)) & 1;
95 Words[T.SimpleTy / WordWidth] |= WordType(1) << (T.SimpleTy % WordWidth);
105 Words[T.SimpleTy / WordWidth] &= ~(WordType(1) << (T.SimpleTy % WordWidth));
[all...]

Completed in 76 milliseconds