Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DAPInt.h87 static const WordType WORD_MAX = ~WordType(0); variable
152 uint64_t mask = WORD_MAX >> (APINT_BITS_PER_WORD - WordBits); in clearUnusedBits()
397 return U.VAL == WORD_MAX >> (APINT_BITS_PER_WORD - BitWidth); in isAllOnesValue()
498 return U.VAL == (WORD_MAX >> (APINT_BITS_PER_WORD - numBits)); in isMask()
562 return APInt(numBits, WORD_MAX, true); in getAllOnesValue()
1385 U.VAL = WORD_MAX; in setAllBits()
1418 uint64_t mask = WORD_MAX >> (APINT_BITS_PER_WORD - (hiBit - loBit)); in setBits()
1472 U.VAL ^= WORD_MAX; in flipAllBits()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DAPInt.cpp81 U.pVal[i] = WORD_MAX; in initSlowCase()
307 uint64_t loMask = WORD_MAX << whichBit(loBit); in setBitsSlowCase()
313 uint64_t hiMask = WORD_MAX >> (APINT_BITS_PER_WORD - hiShiftAmt); in setBitsSlowCase()
326 U.pVal[word] = WORD_MAX; in setBitsSlowCase()
357 uint64_t mask = WORD_MAX >> (APINT_BITS_PER_WORD - subBitWidth); in insertBits()
369 uint64_t mask = WORD_MAX >> (APINT_BITS_PER_WORD - subBitWidth); in insertBits()
385 uint64_t mask = WORD_MAX >> (APINT_BITS_PER_WORD - remainingBits); in insertBits()
561 if (U.pVal[i] == WORD_MAX) in countLeadingOnesSlowCase()
585 for (; i < getNumWords() && U.pVal[i] == WORD_MAX; ++i) in countTrailingOnesSlowCase()