Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Basic/
H A DTargetInfo.cpp237 if (getShortWidth() < getIntWidth()) in getTypeConstantSuffix()
273 case UnsignedShort: return getShortWidth(); in getTypeWidth()
287 if (getShortWidth() == BitWidth) in getIntTypeByWidth()
302 if (getShortWidth() >= BitWidth) in getLeastIntTypeByWidth()
/openbsd-src/gnu/llvm/clang/lib/Frontend/
H A DInitPreprocessor.cpp968 Builder.defineMacro("__SHRT_WIDTH__", Twine(TI.getShortWidth())); in InitializePredefinedMacros()
1004 DefineTypeSizeof("__SIZEOF_SHORT__", TI.getShortWidth(), TI, Builder); in InitializePredefinedMacros()
1075 if (TI.getShortWidth() > TI.getCharWidth()) in InitializePredefinedMacros()
1078 if (TI.getIntWidth() > TI.getShortWidth()) in InitializePredefinedMacros()
1091 if (TI.getShortWidth() > TI.getCharWidth()) { in InitializePredefinedMacros()
1097 if (TI.getIntWidth() > TI.getShortWidth()) { in InitializePredefinedMacros()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DTargetInfo.h470 unsigned getShortWidth() const { return 16; } // FIXME in getShortWidth() function
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DASTContext.cpp2075 Width = Target->getShortWidth(); in getTypeInfoImpl()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaDecl.cpp19574 unsigned ShortWidth = Context.getTargetInfo().getShortWidth(); in ActOnEnumBody()