Lines Matching refs:EltInfo
1470 std::pair<CharUnits, CharUnits> EltInfo = in getConstantArrayInfoInChars() local
1473 assert((Size == 0 || static_cast<uint64_t>(EltInfo.first.getQuantity()) <= in getConstantArrayInfoInChars()
1476 uint64_t Width = EltInfo.first.getQuantity() * Size; in getConstantArrayInfoInChars()
1477 unsigned Align = EltInfo.second.getQuantity(); in getConstantArrayInfoInChars()
1556 TypeInfo EltInfo = getTypeInfo(CAT->getElementType()); in getTypeInfoImpl() local
1558 assert((Size == 0 || EltInfo.Width <= (uint64_t)(-1) / Size) && in getTypeInfoImpl()
1560 Width = EltInfo.Width * Size; in getTypeInfoImpl()
1561 Align = EltInfo.Align; in getTypeInfoImpl()
1570 TypeInfo EltInfo = getTypeInfo(VT->getElementType()); in getTypeInfoImpl() local
1571 Width = EltInfo.Width * VT->getNumElements(); in getTypeInfoImpl()
1729 TypeInfo EltInfo = getTypeInfo(cast<ComplexType>(T)->getElementType()); in getTypeInfoImpl() local
1730 Width = EltInfo.Width * 2; in getTypeInfoImpl()
1731 Align = EltInfo.Align; in getTypeInfoImpl()