Lines Matching refs:IsSigned
186 bool IsSigned = TI.isTypeSigned(Ty); in DefineFmt() local
188 for (const char *Fmt = IsSigned ? "di" : "ouxX"; *Fmt; ++Fmt) { in DefineFmt()
224 bool IsSigned = TI.isTypeSigned(Ty); in DefineExactWidthIntType() local
229 Ty = IsSigned ? TI.getInt64Type() : TI.getUInt64Type(); in DefineExactWidthIntType()
234 Ty = IsSigned ? TI.getInt16Type() : TI.getUInt16Type(); in DefineExactWidthIntType()
236 const char *Prefix = IsSigned ? "__INT" : "__UINT"; in DefineExactWidthIntType()
249 bool IsSigned = TI.isTypeSigned(Ty); in DefineExactWidthIntTypeSize() local
254 Ty = IsSigned ? TI.getInt64Type() : TI.getUInt64Type(); in DefineExactWidthIntTypeSize()
258 const char *Prefix = IsSigned ? "__INT" : "__UINT"; in DefineExactWidthIntTypeSize()
262 static void DefineLeastWidthIntType(unsigned TypeWidth, bool IsSigned, in DefineLeastWidthIntType() argument
265 TargetInfo::IntType Ty = TI.getLeastIntTypeByWidth(TypeWidth, IsSigned); in DefineLeastWidthIntType()
269 const char *Prefix = IsSigned ? "__INT_LEAST" : "__UINT_LEAST"; in DefineLeastWidthIntType()
273 if (IsSigned) in DefineLeastWidthIntType()
280 static void DefineFastIntType(unsigned TypeWidth, bool IsSigned, in DefineFastIntType() argument
284 TargetInfo::IntType Ty = TI.getLeastIntTypeByWidth(TypeWidth, IsSigned); in DefineFastIntType()
288 const char *Prefix = IsSigned ? "__INT_FAST" : "__UINT_FAST"; in DefineFastIntType()
292 if (IsSigned) in DefineFastIntType()