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