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";
264 bool IsSigned = TI.isTypeSigned(Ty);
269 Ty = IsSigned ? TI.getInt64Type() : TI.getUInt64Type();
273 const char *Prefix = IsSigned ? "__INT" : "__UINT";
278 unsigned TypeWidth, bool IsSigned,
281 TargetInfo::IntType Ty = TI.getLeastIntTypeByWidth(TypeWidth, IsSigned);
285 const char *Prefix = IsSigned ? "__INT_LEAST" : "__UINT_LEAST";
289 if (IsSigned)
297 bool IsSigned, const TargetInfo &TI,
301 TargetInfo::IntType Ty = TI.getLeastIntTypeByWidth(TypeWidth, IsSigned);
305 const char *Prefix = IsSigned ? "__INT_FAST" : "__UINT_FAST";
309 if (IsSigned)