Home
last modified time | relevance | path

Searched refs:SignedShort (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DTargetInfo.cpp139 Int16Type = SignedShort; in TargetInfo()
237 case SignedShort: return "short"; in getTypeName()
254 case SignedShort: in getTypeConstantSuffix()
280 case SignedShort: in getTypeFormatModifier()
298 case SignedShort: in getTypeWidth()
314 return IsSigned ? SignedShort : UnsignedShort; in getIntTypeByWidth()
329 return IsSigned ? SignedShort : UnsignedShort; in getLeastIntTypeByWidth()
380 case SignedShort: in getTypeAlign()
397 case SignedShort: in isTypeSigned()
424 case 2: WCharType = Opts.WCharIsSigned ? SignedShort : UnsignedShort; break; in adjust()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetInfo.h150 SignedShort, enumerator
392 return SignedShort; in getSignedSizeType()
437 case SignedShort: in getCorrespondingUnsignedType()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DInitPreprocessor.cpp1137 DefineTypeSize("__SHRT_MAX__", TargetInfo::SignedShort, TI, Builder); in InitializePredefinedMacros()
1280 DefineExactWidthIntType(LangOpts, TargetInfo::SignedShort, TI, Builder); in InitializePredefinedMacros()
1298 DefineExactWidthIntTypeSize(TargetInfo::SignedShort, TI, Builder); in InitializePredefinedMacros()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp10419 case TargetInfo::SignedShort: return ShortTy; in getFromTargetType()