Home
last modified time | relevance | path

Searched refs:ShortWidth (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DContext.cpp25 this->ShortWidth = Ctx.getTargetInfo().getShortWidth(); in Context()
272 return integralTypeToPrimTypeS(this->ShortWidth); in classify()
274 return integralTypeToPrimTypeU(this->ShortWidth); in classify()
H A DContext.h141 unsigned ShortWidth; variable
/freebsd/contrib/llvm-project/clang/lib/Basic/Targets/
H A DAVR.h32 ShortWidth = 16; in AVRTargetInfo()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DTargetInfo.cpp77 ShortWidth = ShortAlign = 16; in TargetInfo()
449 ShortWidth = ShortAlign = 16; in adjust()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetInfo.h92 unsigned char ShortWidth, ShortAlign; member
525 unsigned getShortWidth() const { return ShortWidth; } in getShortWidth()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp5377 unsigned ShortWidth = Target->getShortWidth(); in computeBestEnumTypes() local
5388 } else if (IsPacked && NumNegativeBits <= ShortWidth && in computeBestEnumTypes()
5389 NumPositiveBits < ShortWidth) { in computeBestEnumTypes()
5391 BestWidth = ShortWidth; in computeBestEnumTypes()
5417 } else if (IsPacked && NumPositiveBits <= ShortWidth) { in computeBestEnumTypes()
5420 BestWidth = ShortWidth; in computeBestEnumTypes()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp359 Check("short", llvm::Type::getIntNTy(Context, Target.ShortWidth), in checkDataLayoutConsistency()