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()
222 Ty = IsSigned ? TI.getInt16Type() : TI.getUInt16Type(); in DefineExactWidthIntType()
224 const char *Prefix = IsSigned ? "__INT" : "__UINT"; in DefineExactWidthIntType()
237 bool IsSigned = TI.isTypeSigned(Ty); in DefineExactWidthIntTypeSize() local
242 Ty = IsSigned ? TI.getInt64Type() : TI.getUInt64Type(); in DefineExactWidthIntTypeSize()
244 const char *Prefix = IsSigned ? "__INT" : "__UINT"; in DefineExactWidthIntTypeSize()
248 static void DefineLeastWidthIntType(unsigned TypeWidth, bool IsSigned, in DefineLeastWidthIntType() argument
251 TargetInfo::IntType Ty = TI.getLeastIntTypeByWidth(TypeWidth, IsSigned); in DefineLeastWidthIntType()
255 const char *Prefix = IsSigned ? "__INT_LEAST" : "__UINT_LEAST"; in DefineLeastWidthIntType()
261 static void DefineFastIntType(unsigned TypeWidth, bool IsSigned, in DefineFastIntType() argument
265 TargetInfo::IntType Ty = TI.getLeastIntTypeByWidth(TypeWidth, IsSigned); in DefineFastIntType()
269 const char *Prefix = IsSigned ? "__INT_FAST" : "__UINT_FAST"; in DefineFastIntType()