Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.h59 static unsigned constexpr WordWidth = CHAR_BIT*sizeof(WordType); member
60 static unsigned constexpr NumWords = Capacity/WordWidth;
61 static_assert(NumWords*WordWidth == Capacity,
89 return (Words[T.SimpleTy / WordWidth] >> (T.SimpleTy % WordWidth)) & 1; in count()
93 Words[T.SimpleTy / WordWidth] |= WordType(1) << (T.SimpleTy % WordWidth); in insert()
103 Words[T.SimpleTy / WordWidth] &= ~(WordType(1) << (T.SimpleTy % WordWidth)); in erase()
142 unsigned SkipWords = P / WordWidth; in find_from_pos()
143 unsigned SkipBits = P % WordWidth; in find_from_pos()
144 unsigned Count = SkipWords * WordWidth; in find_from_pos()
150 W &= maskLeadingOnes<WordType>(WordWidth-SkipBits); in find_from_pos()
[all …]
/netbsd-src/sys/arch/prep/include/
H A Dresidual.h103 unsigned long WordWidth; /* Word width in bits */ member
/netbsd-src/sys/arch/prep/prep/
H A Dresidual.c366 printf(" WordWidth = %ld\n", be32toh(vpd->WordWidth)); in print_residual_device_info()