Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp1798 TypeInfoChars EltInfo = Context.getTypeInfoInChars(CAT->getElementType()); in getConstantArrayInfoInChars() local
1800 assert((Size == 0 || static_cast<uint64_t>(EltInfo.Width.getQuantity()) <= in getConstantArrayInfoInChars()
1803 uint64_t Width = EltInfo.Width.getQuantity() * Size; in getConstantArrayInfoInChars()
1804 unsigned Align = EltInfo.Align.getQuantity(); in getConstantArrayInfoInChars()
1810 EltInfo.AlignRequirement); in getConstantArrayInfoInChars()
1946 TypeInfo EltInfo = getTypeInfo(cast<ArrayType>(T)->getElementType()); in getTypeInfoImpl() local
1947 assert((Size == 0 || EltInfo.Width <= (uint64_t)(-1) / Size) && in getTypeInfoImpl()
1949 Width = EltInfo.Width * Size; in getTypeInfoImpl()
1950 Align = EltInfo.Align; in getTypeInfoImpl()
1951 AlignRequirement = EltInfo.AlignRequirement; in getTypeInfoImpl()
[all …]