Home
last modified time | relevance | path

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

/external/clang/lib/CodeGen/
DCodeGenFunction.cpp1395 QualType eltType; in EmitNullInitialization() local
1397 std::tie(numElts, eltType) = getVLASize(vlaType); in EmitNullInitialization()
1400 CharUnits eltSize = getContext().getTypeSizeInChars(eltType); in EmitNullInitialization()
1512 QualType eltType; in emitArrayLength() local
1523 eltType = arrayType->getElementType(); in emitArrayLength()
1539 eltType = arrayType->getElementType(); in emitArrayLength()
1540 arrayType = getContext().getAsArrayType(eltType); in emitArrayLength()
1543 llvm::Type *baseType = ConvertType(eltType); in emitArrayLength()
1552 baseType = eltType; in emitArrayLength()
DCGCXXABI.h81 virtual bool requiresArrayCookie(const CXXDeleteExpr *E, QualType eltType);
DCGExpr.cpp2666 QualType eltType; in getFixedSizeElementType() local
2668 eltType = vla->getElementType(); in getFixedSizeElementType()
2669 } while ((vla = ctx.getAsVariableArrayType(eltType))); in getFixedSizeElementType()
2670 return eltType; in getFixedSizeElementType()
2675 QualType eltType, bool inbounds, in emitArraySubscriptGEP() argument
2686 if (auto vla = CGF.getContext().getAsVariableArrayType(eltType)) { in emitArraySubscriptGEP()
2687 eltType = getFixedSizeElementType(CGF.getContext(), vla); in emitArraySubscriptGEP()
2691 CharUnits eltSize = CGF.getContext().getTypeSizeInChars(eltType); in emitArraySubscriptGEP()
DCGExprComplex.cpp311 QualType eltType = complexType->castAs<ComplexType>()->getElementType(); in emitAddrOfImagComponent() local
312 CharUnits offset = getContext().getTypeSizeInChars(eltType); in emitAddrOfImagComponent()
DCGExprScalar.cpp2022 QualType eltType; in VisitUnaryExprOrTypeTraitExpr() local
2024 std::tie(numElts, eltType) = CGF.getVLASize(VAT); in VisitUnaryExprOrTypeTraitExpr()
2029 CharUnits eltSize = CGF.getContext().getTypeSizeInChars(eltType); in VisitUnaryExprOrTypeTraitExpr()
/external/clang/lib/Sema/
DSemaExpr.cpp5511 QualType &eltType) { in breakDownVectorType() argument
5515 eltType = vecType->getElementType(); in breakDownVectorType()
5516 assert(eltType->isScalarType()); in breakDownVectorType()
5525 eltType = type; in breakDownVectorType()
DSemaChecking.cpp2691 QualType eltType = LHSType->getAs<VectorType>()->getElementType(); in SemaBuiltinShuffleVector() local
2692 resType = Context.getVectorType(eltType, numResElements, in SemaBuiltinShuffleVector()