Lines Matching defs:isUnsigned
1639 APSInt api(bitWidth, /*isUnsigned=*/true);
1661 APSInt api(bitWidth, /*isUnsigned=*/false);
1999 bool isUnsigned) {
2007 return isUnsigned ? CmpIPredicate::ugt : CmpIPredicate::sgt;
2010 return isUnsigned ? CmpIPredicate::uge : CmpIPredicate::sge;
2013 return isUnsigned ? CmpIPredicate::ult : CmpIPredicate::slt;
2016 return isUnsigned ? CmpIPredicate::ule : CmpIPredicate::sle;
2044 bool isUnsigned;
2048 isUnsigned = false;
2051 isUnsigned = true;
2063 auto valueBits = isUnsigned ? intWidth : (intWidth - 1);
2101 pred = convertToIntegerPredicate(op.getPredicate(), isUnsigned);
2105 if (!isUnsigned) {
2139 if (!isUnsigned) {
2176 APSInt rhsInt(intWidth, isUnsigned);
2187 apf.convertFromAPInt(rhsInt, !isUnsigned, APFloat::rmNearestTiesToEven);