Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp2723 unsigned int dstPartsCount, truncatedBits; in convertToSignExtendedInteger() local
2731 dstPartsCount = partCountForBits(width); in convertToSignExtendedInteger()
2732 assert(dstPartsCount <= parts.size() && "Integer too big"); in convertToSignExtendedInteger()
2735 APInt::tcSet(parts.data(), 0, dstPartsCount); in convertToSignExtendedInteger()
2747 APInt::tcSet(parts.data(), 0, dstPartsCount); in convertToSignExtendedInteger()
2763 APInt::tcExtract(parts.data(), dstPartsCount, src, bits, truncatedBits); in convertToSignExtendedInteger()
2766 APInt::tcExtract(parts.data(), dstPartsCount, src, semantics->precision, in convertToSignExtendedInteger()
2768 APInt::tcShiftLeft(parts.data(), dstPartsCount, in convertToSignExtendedInteger()
2781 if (APInt::tcIncrement(parts.data(), dstPartsCount)) in convertToSignExtendedInteger()
2789 unsigned int omsb = APInt::tcMSB(parts.data(), dstPartsCount) + 1; in convertToSignExtendedInteger()
[all …]