Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DASTContext.cpp1850 TypeInfoChars EltInfo = Context.getTypeInfoInChars(CAT->getElementType()); in getConstantArrayInfoInChars() local
1852 assert((Size == 0 || static_cast<uint64_t>(EltInfo.Width.getQuantity()) <= in getConstantArrayInfoInChars()
1855 uint64_t Width = EltInfo.Width.getQuantity() * Size; in getConstantArrayInfoInChars()
1856 unsigned Align = EltInfo.Align.getQuantity(); in getConstantArrayInfoInChars()
1862 EltInfo.AlignIsRequired); in getConstantArrayInfoInChars()
1960 TypeInfo EltInfo = getTypeInfo(cast<ArrayType>(T)->getElementType()); in getTypeInfoImpl() local
1961 assert((Size == 0 || EltInfo.Width <= (uint64_t)(-1) / Size) && in getTypeInfoImpl()
1963 Width = EltInfo.Width * Size; in getTypeInfoImpl()
1964 Align = EltInfo.Align; in getTypeInfoImpl()
1965 AlignIsRequired = EltInfo.AlignIsRequired; in getTypeInfoImpl()
[all …]