Lines Matching refs:IsSigned
185 bool IsSigned = TI.isTypeSigned(Ty); in DefineFmt() local
187 for (const char *Fmt = IsSigned ? "di" : "ouxX"; *Fmt; ++Fmt) { in DefineFmt()
223 bool IsSigned = TI.isTypeSigned(Ty); in DefineExactWidthIntType() local
228 Ty = IsSigned ? TI.getInt64Type() : TI.getUInt64Type(); in DefineExactWidthIntType()
233 Ty = IsSigned ? TI.getInt16Type() : TI.getUInt16Type(); in DefineExactWidthIntType()
235 const char *Prefix = IsSigned ? "__INT" : "__UINT"; in DefineExactWidthIntType()
248 bool IsSigned = TI.isTypeSigned(Ty); in DefineExactWidthIntTypeSize() local
253 Ty = IsSigned ? TI.getInt64Type() : TI.getUInt64Type(); in DefineExactWidthIntTypeSize()
257 const char *Prefix = IsSigned ? "__INT" : "__UINT"; in DefineExactWidthIntTypeSize()
261 static void DefineLeastWidthIntType(unsigned TypeWidth, bool IsSigned, in DefineLeastWidthIntType() argument
264 TargetInfo::IntType Ty = TI.getLeastIntTypeByWidth(TypeWidth, IsSigned); in DefineLeastWidthIntType()
268 const char *Prefix = IsSigned ? "__INT_LEAST" : "__UINT_LEAST"; in DefineLeastWidthIntType()
272 if (IsSigned) in DefineLeastWidthIntType()
279 static void DefineFastIntType(unsigned TypeWidth, bool IsSigned, in DefineFastIntType() argument
283 TargetInfo::IntType Ty = TI.getLeastIntTypeByWidth(TypeWidth, IsSigned); in DefineFastIntType()
287 const char *Prefix = IsSigned ? "__INT_FAST" : "__UINT_FAST"; in DefineFastIntType()
291 if (IsSigned) in DefineFastIntType()