HomeSort by: relevance | last modified time | path
    Searched refs:Dims (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprOpenMP.h 159 SourceLocation R, ArrayRef<Expr *> Dims);
166 void setDimensions(ArrayRef<Expr *> Dims);
186 SourceLocation R, ArrayRef<Expr *> Dims,
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUHSAMetadataStreamer.cpp 181 std::vector<uint32_t> Dims;
183 return Dims;
186 Dims.push_back(mdconst::extract<ConstantInt>(Op)->getZExtValue());
187 return Dims;
600 auto Dims = HSAMetadataDoc->getArrayNode();
602 return Dims;
605 Dims.push_back(Dims.getDocument()->getNode(
607 return Dims;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
TypeSize.h 273 enum Dims : unsigned { FixedDim = 0, ScalableDim = 1 };
276 LinearPolySize(ScalarTy MinVal, Dims D)
  /src/external/apache2/llvm/dist/clang/lib/AST/
Expr.cpp 4747 void OMPArrayShapingExpr::setDimensions(ArrayRef<Expr *> Dims) {
4749 NumDims == Dims.size() &&
4751 llvm::copy(Dims, getTrailingObjects<Expr *>());
4763 ArrayRef<Expr *> Dims)
4765 RPLoc(R), NumDims(Dims.size()) {
4767 setDimensions(Dims);
4774 ArrayRef<Expr *> Dims,
4776 assert(Dims.size() == BracketRanges.size() &&
4779 totalSizeToAlloc<Expr *, SourceRange>(Dims.size() + 1, Dims.size())
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGOpenMPRuntime.cpp 7090 /// descriptor_dim pointers and use args_size as dims. Used when we have
7156 MapDimArrayTy Dims;
7178 NonContigInfo.Dims.append(CurInfo.NonContigInfo.Dims.begin(),
7179 CurInfo.NonContigInfo.Dims.end());
7911 CombinedInfo.NonContigInfo.Dims.push_back(IsNonContiguous ? DimSize
7925 CombinedInfo.NonContigInfo.Dims.push_back(IsNonContiguous ? DimSize
7937 CombinedInfo.NonContigInfo.Dims.push_back(IsNonContiguous ? DimSize
8112 // pointers, base_pointers, sizes, or dims. Instead, the size of offset,
8656 CurInfo.NonContigInfo.Dims.push_back(0)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp 959 SmallVector<Expr *, 4> Dims(NumDims);
961 Dims[I] = Record.readSubExpr();
962 E->setDimensions(Dims);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
TreeTransform.h 2554 ArrayRef<Expr *> Dims,
2556 return getSema().ActOnOMPArrayShapingExpr(Base, LParenLoc, RParenLoc, Dims,
10632 SmallVector<Expr *, 4> Dims;
10640 Dims.push_back(DimRes.get());
10646 E->getRParenLoc(), Dims,
SemaExpr.cpp 5074 ArrayRef<Expr *> Dims,
5090 LParenLoc, RParenLoc, Dims, Brackets);
5100 for (Expr *Dim : Dims) {
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 5272 ArrayRef<Expr *> Dims,

Completed in 96 milliseconds