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.cpp239 if (getShortWidth() < getIntWidth()) in getTypeConstantSuffix()
275 case UnsignedShort: return getShortWidth(); in getTypeWidth()
289 if (getShortWidth() == BitWidth) in getIntTypeByWidth()
304 if (getShortWidth() >= BitWidth) in getLeastIntTypeByWidth()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DInitPreprocessor.cpp1017 Builder.defineMacro("__SHRT_WIDTH__", Twine(TI.getShortWidth())); in InitializePredefinedMacros()
1053 DefineTypeSizeof("__SIZEOF_SHORT__", TI.getShortWidth(), TI, Builder); in InitializePredefinedMacros()
1124 if (TI.getShortWidth() > TI.getCharWidth()) in InitializePredefinedMacros()
1127 if (TI.getIntWidth() > TI.getShortWidth()) in InitializePredefinedMacros()
1140 if (TI.getShortWidth() > TI.getCharWidth()) { in InitializePredefinedMacros()
1146 if (TI.getIntWidth() > TI.getShortWidth()) { in InitializePredefinedMacros()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetInfo.h492 unsigned getShortWidth() const { return 16; } // FIXME in getShortWidth() function
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp2005 Width = Target->getShortWidth(); in getTypeInfoImpl()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDecl.cpp20191 unsigned ShortWidth = Context.getTargetInfo().getShortWidth(); in ActOnEnumBody()