Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang-tools-extra/pseudo/include/clang-pseudo/grammar/
H A DLRTable.h189 constexpr static unsigned WordBits = CHAR_BIT * sizeof(Word); variable
203 unsigned NumWords = (NumKeys + WordBits - 1) / WordBits; in TransitionTable()
208 if ((I % WordBits) == 0) in TransitionTable()
212 HasValue[I / WordBits] |= (Word(1) << (I % WordBits)); in TransitionTable()
220 Word KeyMask = Word(1) << (Key % WordBits); in get()
221 unsigned KeyWord = Key / WordBits; in get()
/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DAPInt.h1867 unsigned WordBits = ((BitWidth - 1) % APINT_BITS_PER_WORD) + 1;
1870 uint64_t mask = WORDTYPE_MAX >> (APINT_BITS_PER_WORD - WordBits);