Home
last modified time | relevance | path

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

/external/llvm/lib/Support/
DAPInt.cpp697 unsigned BitsInMSW = BitWidth % APINT_BITS_PER_WORD; in countLeadingZerosSlowCase() local
699 if (BitsInMSW) MSWMask = (integerPart(1) << BitsInMSW) - 1; in countLeadingZerosSlowCase()
702 BitsInMSW = APINT_BITS_PER_WORD; in countLeadingZerosSlowCase()
708 return llvm::countLeadingZeros(MSW) - (APINT_BITS_PER_WORD - BitsInMSW); in countLeadingZerosSlowCase()
710 unsigned Count = BitsInMSW; in countLeadingZerosSlowCase()