Lines Matching defs:IsSigned
197 bool IsSigned = TI.isTypeSigned(Ty);
198 llvm::for_each(StringRef(IsSigned ? "di" : "ouxX"), Emitter);
202 if (LangOpts.C23 && !IsSigned)
237 bool IsSigned = TI.isTypeSigned(Ty);
242 Ty = IsSigned ? TI.getInt64Type() : TI.getUInt64Type();
247 Ty = IsSigned ? TI.getInt16Type() : TI.getUInt16Type();
249 const char *Prefix = IsSigned ? "__INT" : "__UINT";
262 bool IsSigned = TI.isTypeSigned(Ty);
267 Ty = IsSigned ? TI.getInt64Type() : TI.getUInt64Type();
271 const char *Prefix = IsSigned ? "__INT" : "__UINT";
276 unsigned TypeWidth, bool IsSigned,
279 TargetInfo::IntType Ty = TI.getLeastIntTypeByWidth(TypeWidth, IsSigned);
283 const char *Prefix = IsSigned ? "__INT_LEAST" : "__UINT_LEAST";
287 if (IsSigned)
295 bool IsSigned, const TargetInfo &TI,
299 TargetInfo::IntType Ty = TI.getLeastIntTypeByWidth(TypeWidth, IsSigned);
303 const char *Prefix = IsSigned ? "__INT_FAST" : "__UINT_FAST";
307 if (IsSigned)