Lines Matching full:issigned
76 void APInt::initSlowCase(unsigned numBits, uint64_t val, bool isSigned) {
79 if (isSigned && int64_t(val) < 0)
858 double APInt::roundToDouble(bool isSigned) const {
863 if (isSigned) {
871 bool isNeg = isSigned ? (*this)[BitWidth-1] : false;
886 if (!isSigned || !isNeg)
2261 void APInt::print(raw_ostream &OS, bool isSigned) const {
2263 this->toString(S, 10, isSigned, /* formatAsCLiteral = */false);