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.cpp2621 unsigned int dstPartsCount, truncatedBits; in convertToSignExtendedInteger() local
2629 dstPartsCount = partCountForBits(width); in convertToSignExtendedInteger()
2630 assert(dstPartsCount <= parts.size() && "Integer too big"); in convertToSignExtendedInteger()
2633 APInt::tcSet(parts.data(), 0, dstPartsCount); in convertToSignExtendedInteger()
2645 APInt::tcSet(parts.data(), 0, dstPartsCount); in convertToSignExtendedInteger()
2661 APInt::tcExtract(parts.data(), dstPartsCount, src, bits, truncatedBits); in convertToSignExtendedInteger()
2664 APInt::tcExtract(parts.data(), dstPartsCount, src, semantics->precision, in convertToSignExtendedInteger()
2666 APInt::tcShiftLeft(parts.data(), dstPartsCount, in convertToSignExtendedInteger()
2679 if (APInt::tcIncrement(parts.data(), dstPartsCount)) in convertToSignExtendedInteger()
2687 unsigned int omsb = APInt::tcMSB(parts.data(), dstPartsCount) + 1; in convertToSignExtendedInteger()
[all …]