Searched refs:eltType (Results 1 – 7 of 7) sorted by relevance
1395 QualType eltType; in EmitNullInitialization() local1397 std::tie(numElts, eltType) = getVLASize(vlaType); in EmitNullInitialization()1400 CharUnits eltSize = getContext().getTypeSizeInChars(eltType); in EmitNullInitialization()1512 QualType eltType; in emitArrayLength() local1523 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()
81 virtual bool requiresArrayCookie(const CXXDeleteExpr *E, QualType eltType);
2666 QualType eltType; in getFixedSizeElementType() local2668 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() argument2686 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()
311 QualType eltType = complexType->castAs<ComplexType>()->getElementType(); in emitAddrOfImagComponent() local312 CharUnits offset = getContext().getTypeSizeInChars(eltType); in emitAddrOfImagComponent()
2022 QualType eltType; in VisitUnaryExprOrTypeTraitExpr() local2024 std::tie(numElts, eltType) = CGF.getVLASize(VAT); in VisitUnaryExprOrTypeTraitExpr()2029 CharUnits eltSize = CGF.getContext().getTypeSizeInChars(eltType); in VisitUnaryExprOrTypeTraitExpr()
5511 QualType &eltType) { in breakDownVectorType() argument5515 eltType = vecType->getElementType(); in breakDownVectorType()5516 assert(eltType->isScalarType()); in breakDownVectorType()5525 eltType = type; in breakDownVectorType()
2691 QualType eltType = LHSType->getAs<VectorType>()->getElementType(); in SemaBuiltinShuffleVector() local2692 resType = Context.getVectorType(eltType, numResElements, in SemaBuiltinShuffleVector()