Lines Matching refs:isNeg
836 bool isNeg = T.I >> 63; in RoundDoubleToAPInt() local
850 return isNeg ? -APInt(width, mantissa >> (52 - exp)) : in RoundDoubleToAPInt()
861 return isNeg ? -Tmp : Tmp; in RoundDoubleToAPInt()
884 bool isNeg = isSigned ? (*this)[BitWidth-1] : false; in roundToDouble() local
887 APInt Tmp(isNeg ? -(*this) : (*this)); in roundToDouble()
899 if (!isSigned || !isNeg) in roundToDouble()
922 uint64_t sign = isNeg ? (1ULL << (APINT_BITS_PER_WORD - 1)) : 0; in roundToDouble()
1589 bool isNeg = false; in KnuthDiv() local
1607 isNeg |= borrow; in KnuthDiv()
1618 if (isNeg) { in KnuthDiv()
2102 bool isNeg = *p == '-'; in fromString() local
2147 if (isNeg) { in fromString()