Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DASTContext.cpp1397 std::pair<CharUnits, CharUnits> EltInfo = in getConstantArrayInfoInChars() local
1400 assert((Size == 0 || static_cast<uint64_t>(EltInfo.first.getQuantity()) <= in getConstantArrayInfoInChars()
1403 uint64_t Width = EltInfo.first.getQuantity() * Size; in getConstantArrayInfoInChars()
1404 unsigned Align = EltInfo.second.getQuantity(); in getConstantArrayInfoInChars()
1474 std::pair<uint64_t, unsigned> EltInfo = getTypeInfo(CAT->getElementType()); in getTypeInfoImpl() local
1476 assert((Size == 0 || EltInfo.first <= (uint64_t)(-1)/Size) && in getTypeInfoImpl()
1478 Width = EltInfo.first*Size; in getTypeInfoImpl()
1479 Align = EltInfo.second; in getTypeInfoImpl()
1488 std::pair<uint64_t, unsigned> EltInfo = getTypeInfo(VT->getElementType()); in getTypeInfoImpl() local
1489 Width = EltInfo.first*VT->getNumElements(); in getTypeInfoImpl()
[all …]