Home
last modified time | relevance | path

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

/external/llvm/lib/Support/
DAPInt.cpp773 unsigned BitsInMSW = BitWidth % APINT_BITS_PER_WORD; in countLeadingZerosSlowCase() local
775 if (BitsInMSW) MSWMask = (integerPart(1) << BitsInMSW) - 1; in countLeadingZerosSlowCase()
778 BitsInMSW = APINT_BITS_PER_WORD; in countLeadingZerosSlowCase()
784 return CountLeadingZeros_64(MSW) - (APINT_BITS_PER_WORD - BitsInMSW); in countLeadingZerosSlowCase()
786 unsigned Count = BitsInMSW; in countLeadingZerosSlowCase()