Home
last modified time | relevance | path

Searched refs:getShortWidth (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DTargetInfo.cpp240 if (getShortWidth() < getIntWidth()) in getTypeConstantSuffix()
276 case UnsignedShort: return getShortWidth(); in getTypeWidth()
290 if (getShortWidth() == BitWidth) in getIntTypeByWidth()
305 if (getShortWidth() >= BitWidth) in getLeastIntTypeByWidth()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DInitPreprocessor.cpp1107 Builder.defineMacro("__SHRT_WIDTH__", Twine(TI.getShortWidth())); in InitializePredefinedMacros()
1143 DefineTypeSizeof("__SIZEOF_SHORT__", TI.getShortWidth(), TI, Builder); in InitializePredefinedMacros()
1258 if (TI.getShortWidth() > TI.getCharWidth()) in InitializePredefinedMacros()
1261 if (TI.getIntWidth() > TI.getShortWidth()) in InitializePredefinedMacros()
1274 if (TI.getShortWidth() > TI.getCharWidth()) { in InitializePredefinedMacros()
1280 if (TI.getIntWidth() > TI.getShortWidth()) { in InitializePredefinedMacros()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetInfo.h501 unsigned getShortWidth() const { return 16; } // FIXME in getShortWidth() function
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp2038 Width = Target->getShortWidth(); in getTypeInfoImpl()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDecl.cpp19861 unsigned ShortWidth = Context.getTargetInfo().getShortWidth(); in ActOnEnumBody()