Home
last modified time | relevance | path

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

/external/llvm/lib/Support/
DAPInt.cpp684 unsigned BitsInMSW = BitWidth % APINT_BITS_PER_WORD; in countLeadingZerosSlowCase() local
686 if (BitsInMSW) MSWMask = (integerPart(1) << BitsInMSW) - 1; in countLeadingZerosSlowCase()
689 BitsInMSW = APINT_BITS_PER_WORD; in countLeadingZerosSlowCase()
695 return CountLeadingZeros_64(MSW) - (APINT_BITS_PER_WORD - BitsInMSW); in countLeadingZerosSlowCase()
697 unsigned Count = BitsInMSW; in countLeadingZerosSlowCase()