Lines Matching refs:EltInfo
1804 TypeInfoChars EltInfo = Context.getTypeInfoInChars(CAT->getElementType()); in getConstantArrayInfoInChars() local
1806 assert((Size == 0 || static_cast<uint64_t>(EltInfo.Width.getQuantity()) <= in getConstantArrayInfoInChars()
1809 uint64_t Width = EltInfo.Width.getQuantity() * Size; in getConstantArrayInfoInChars()
1810 unsigned Align = EltInfo.Align.getQuantity(); in getConstantArrayInfoInChars()
1816 EltInfo.AlignIsRequired); in getConstantArrayInfoInChars()
1914 TypeInfo EltInfo = getTypeInfo(cast<ArrayType>(T)->getElementType()); in getTypeInfoImpl() local
1915 assert((Size == 0 || EltInfo.Width <= (uint64_t)(-1) / Size) && in getTypeInfoImpl()
1917 Width = EltInfo.Width * Size; in getTypeInfoImpl()
1918 Align = EltInfo.Align; in getTypeInfoImpl()
1919 AlignIsRequired = EltInfo.AlignIsRequired; in getTypeInfoImpl()
1929 TypeInfo EltInfo = getTypeInfo(VT->getElementType()); in getTypeInfoImpl() local
1930 Width = EltInfo.Width * VT->getNumElements(); in getTypeInfoImpl()
2197 TypeInfo EltInfo = getTypeInfo(cast<ComplexType>(T)->getElementType()); in getTypeInfoImpl() local
2198 Width = EltInfo.Width * 2; in getTypeInfoImpl()
2199 Align = EltInfo.Align; in getTypeInfoImpl()