Lines Matching refs:EltInfo
1798 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()
1961 TypeInfo EltInfo = getTypeInfo(VT->getElementType()); in getTypeInfoImpl() local
1963 : EltInfo.Width * VT->getNumElements(); in getTypeInfoImpl()
2279 TypeInfo EltInfo = getTypeInfo(cast<ComplexType>(T)->getElementType()); in getTypeInfoImpl() local
2280 Width = EltInfo.Width * 2; in getTypeInfoImpl()
2281 Align = EltInfo.Align; in getTypeInfoImpl()