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

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CastSizeChecker.cpp 64 const Type *ElemType = Last->getType()->getArrayElementTypeNoTypeQual();
68 FlexSize = Ctx.getTypeSizeInChars(ElemType);
74 FlexSize = Ctx.getTypeSizeInChars(ElemType);
MallocSizeofChecker.cpp 165 QualType ElemType = AT->getElementType();
168 T = ElemType;
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BTF.h 150 uint32_t ElemType; ///< Element type
BTFDebug.cpp 199 ArrayInfo.ElemType = ElemTypeId;
218 OS.emitInt32(ArrayInfo.ElemType);
509 const DIType *ElemType = CTy->getBaseType();
510 visitTypeEntry(ElemType, ElemTypeId, false, false);
  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
Wasm.h 71 uint8_t ElemType;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
WasmYAML.h 54 TableType ElemType;
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
RegionStore.cpp 2264 QualType ElemType = VT->getElementType();
2275 const ElementRegion *ER = MRMgr.getElementRegion(ElemType, Idx, R, Ctx);
2277 if (ElemType->isArrayType())
2279 else if (ElemType->isStructureOrClassType())
  /src/external/apache2/llvm/dist/llvm/lib/Object/
WasmObjectFile.cpp 219 TableType.ElemType = readUint8(Ctx);
1060 auto ElemType = Im.Table.ElemType;
1061 if (ElemType != wasm::WASM_TYPE_FUNCREF &&
1062 ElemType != wasm::WASM_TYPE_EXTERNREF)
1111 auto ElemType = Tables.back().Type.ElemType;
1112 if (ElemType != wasm::WASM_TYPE_FUNCREF &&
1113 ElemType != wasm::WASM_TYPE_EXTERNREF) {
1384 return make_error<GenericBinaryError>("invalid elemtype",
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
ExprConstant.cpp 1055 QualType ElemType;
6583 QualType ElemType = Caller.ElemType;
6584 if (ElemType->isIncompleteType() || ElemType->isFunctionType()) {
6587 << (ElemType->isIncompleteType() ? 0 : 1) << ElemType;
6601 if (!HandleSizeof(Info, E->getExprLoc(), ElemType, ElemSize))
6609 << ByteSize << APSInt(ElemSizeAP, true) << ElemType;
6623 QualType AllocType = Info.Ctx.getConstantArrayType(ElemType, Size, nullptr
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
ItaniumDemangle.h 3569 Node *ElemType = getDerived().parseType();
3570 if (ElemType == nullptr)
3572 return make<VectorType>(ElemType, DimensionNumber);
3581 Node *ElemType = getDerived().parseType();
3582 if (!ElemType)
3584 return make<VectorType>(ElemType, DimExpr);
3586 Node *ElemType = getDerived().parseType();
3587 if (!ElemType)
3589 return make<VectorType>(ElemType, /*Dimension=*/nullptr);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGStmtOpenMP.cpp 4567 QualType ElemType = C.getBaseElementType(Ty);
4568 auto *InitVD = ImplicitParamDecl::Create(C, CD, Loc, /*Id=*/nullptr, ElemType,
4572 /*RefersToEnclosingVariableOrCapture=*/false, Loc, ElemType, VK_LValue);
4574 PrivateVD->setInit(ImplicitCastExpr::Create(C, ElemType, CK_LValueToRValue,
CGOpenMPRuntime.cpp 838 auto *ElemType =
841 auto *ElemSizeOf = llvm::ConstantExpr::getSizeOf(ElemType);
7326 // Size = sizetype - lb * elemtype;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaType.cpp 7972 QualType ElemType = CurType->castAs<PipeType>()->getElementType();
7973 CurType = S.Context.getWritePipeType(ElemType);
8744 QualType ElemType = Context.getBaseElementType(T);
8745 if ((isCompleteType(Loc, ElemType) || ElemType->isVoidType()) &&
8754 const RecordType *RT = ElemType->getAs<RecordType>();
8763 if (RequireCompleteType(Loc, ElemType, diag::note_non_literal_incomplete, T))

Completed in 91 milliseconds