HomeSort by: relevance | last modified time | path
    Searched defs:eltType (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
SwiftCallingConv.cpp 77 QualType eltType = arrayType->getElementType();
78 auto eltSize = CGM.getContext().getTypeSizeInChars(eltType);
80 addTypedData(eltType, begin + i * eltSize);
85 auto eltType = complexType->getElementType();
86 auto eltSize = CGM.getContext().getTypeSizeInChars(eltType);
87 auto eltLLVMType = CGM.getTypes().ConvertType(eltType);
CodeGenFunction.cpp 2015 QualType eltType;
2026 eltType = arrayType->getElementType();
2042 eltType = arrayType->getElementType();
2043 arrayType = getContext().getAsArrayType(eltType);
2046 llvm::Type *baseType = ConvertType(eltType);
2055 baseType = eltType;
CGExpr.cpp 3559 QualType EltType = E->getType()->castAsArrayTypeUnsafe()->getElementType();
3561 if (TBAAInfo) *TBAAInfo = CGM.getTBAAAccessInfo(EltType);
3563 return Builder.CreateElementBitCast(Addr, ConvertTypeForMem(EltType));
3616 QualType eltType;
3618 eltType = vla->getElementType();
3619 } while ((vla = ctx.getAsVariableArrayType(eltType)));
3620 return eltType;
3661 QualType eltType, bool inbounds,
3675 if (auto vla = CGF.getContext().getAsVariableArrayType(eltType)) {
3676 eltType = getFixedSizeElementType(CGF.getContext(), vla)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPULibCalls.cpp 861 Type *eltType;
867 eltType = opr0->getType();
873 eltType = VTy->getElementType();
891 Constant *cnval = ConstantFP::get(eltType, 1.0);
915 Constant *cnval = ConstantFP::get(eltType, 1.0);
965 cnval = ConstantFP::get(eltType, 1.0);
983 cnval = ConstantFP::get(eltType, 1.0);
1016 cnval = ConstantFP::get(eltType, V);
1111 Type* nTyS = eltType->isDoubleTy() ? B.getInt64Ty() : B.getInt32Ty();
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 6322 QualType eltType = LHSType->castAs<VectorType>()->getElementType();
6323 resType = Context.getVectorType(eltType, numResElements,

Completed in 40 milliseconds