Lines Matching full:issigned
77 void APInt::initSlowCase(unsigned numBits, uint64_t val, bool isSigned) {
80 if (isSigned && int64_t(val) < 0)
871 double APInt::roundToDouble(bool isSigned) const {
876 if (isSigned) {
884 bool isNeg = isSigned ? (*this)[BitWidth-1] : false;
899 if (!isSigned || !isNeg)
2279 void APInt::print(raw_ostream &OS, bool isSigned) const {
2281 this->toString(S, 10, isSigned, /* formatAsCLiteral = */false);