Lines Matching refs:isSigned
166 bool isSigned = false,
171 bool isSigned,
421 CWriter::printSimpleType(raw_ostream &Out, Type *Ty, bool isSigned, in printSimpleType() argument
432 return Out << (isSigned?"signed":"unsigned") << " char " << NameSoFar; in printSimpleType()
434 return Out << (isSigned?"signed":"unsigned") << " short " << NameSoFar; in printSimpleType()
436 return Out << (isSigned?"signed":"unsigned") << " int " << NameSoFar; in printSimpleType()
438 return Out << (isSigned?"signed":"unsigned") << " long long "<< NameSoFar; in printSimpleType()
441 return Out << (isSigned?"llvmInt128":"llvmUInt128") << " " << NameSoFar; in printSimpleType()
453 return printSimpleType(Out, Type::getInt32Ty(Ty->getContext()), isSigned, in printSimpleType()
458 return printSimpleType(Out, VTy->getElementType(), isSigned, in printSimpleType()
475 bool isSigned, const std::string &NameSoFar, in printType() argument
478 printSimpleType(Out, Ty, isSigned, NameSoFar); in printType()
1440 bool castIsSigned = Cmp.isSigned(); in writeOperandWithCast()
2733 static void printLimitValue(IntegerType &Ty, bool isSigned, bool isMax, in printLimitValue() argument
2752 if (isSigned) in printLimitValue()