Lines Matching refs:IsSigned
202 bool IsSigned = TI.isTypeSigned(Ty); in DefineFmt() local
204 for (const char *Fmt = IsSigned ? "di" : "ouxX"; *Fmt; ++Fmt) { in DefineFmt()
230 bool IsSigned = TI.isTypeSigned(Ty); in DefineExactWidthIntType() local
235 Ty = IsSigned ? TI.getInt64Type() : TI.getUInt64Type(); in DefineExactWidthIntType()
237 const char *Prefix = IsSigned ? "__INT" : "__UINT"; in DefineExactWidthIntType()
250 bool IsSigned = TI.isTypeSigned(Ty); in DefineExactWidthIntTypeSize() local
255 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()
274 static void DefineFastIntType(unsigned TypeWidth, bool IsSigned, in DefineFastIntType() argument
278 TargetInfo::IntType Ty = TI.getLeastIntTypeByWidth(TypeWidth, IsSigned); in DefineFastIntType()
282 const char *Prefix = IsSigned ? "__INT_FAST" : "__UINT_FAST"; in DefineFastIntType()