Lines Matching refs:IsSigned
184 bool IsSigned = TI.isTypeSigned(Ty); in DefineFmt() local
186 for (const char *Fmt = IsSigned ? "di" : "ouxX"; *Fmt; ++Fmt) { in DefineFmt()
212 bool IsSigned = TI.isTypeSigned(Ty); in DefineExactWidthIntType() local
217 Ty = IsSigned ? TI.getInt64Type() : TI.getUInt64Type(); in DefineExactWidthIntType()
219 const char *Prefix = IsSigned ? "__INT" : "__UINT"; in DefineExactWidthIntType()
232 bool IsSigned = TI.isTypeSigned(Ty); in DefineExactWidthIntTypeSize() local
237 Ty = IsSigned ? TI.getInt64Type() : TI.getUInt64Type(); in DefineExactWidthIntTypeSize()
239 const char *Prefix = IsSigned ? "__INT" : "__UINT"; in DefineExactWidthIntTypeSize()
243 static void DefineLeastWidthIntType(unsigned TypeWidth, bool IsSigned, in DefineLeastWidthIntType() argument
246 TargetInfo::IntType Ty = TI.getLeastIntTypeByWidth(TypeWidth, IsSigned); in DefineLeastWidthIntType()
250 const char *Prefix = IsSigned ? "__INT_LEAST" : "__UINT_LEAST"; in DefineLeastWidthIntType()
256 static void DefineFastIntType(unsigned TypeWidth, bool IsSigned, in DefineFastIntType() argument
260 TargetInfo::IntType Ty = TI.getLeastIntTypeByWidth(TypeWidth, IsSigned); in DefineFastIntType()
264 const char *Prefix = IsSigned ? "__INT_FAST" : "__UINT_FAST"; in DefineFastIntType()