Home
last modified time | relevance | path

Searched refs:aref (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
H A Dalloc_rfunction.pass.cpp83 Ref aref(a); in main() local
84 std::function<int(int)> f(aref); in main()
H A Dcopy_move.pass.cpp138 Ref aref(a); in main() local
139 std::function<int(int)> f(aref); in main()
/llvm-project-15.0.7/clang/test/Parser/
H A Dcxx-reference.cpp15 void g(const A aref) { // expected-warning {{'const' qualifier on reference type 'A' (aka 'int &') … in g() argument
/llvm-project-15.0.7/mlir/include/mlir/ExecutionEngine/
H A DSparseTensorUtils.h153 _mlir_ciface_newSparseTensor(StridedMemRefType<DimLevelType, 1> *aref, // NOLINT
212 StridedMemRefType<index_type, 1> *aref, index_type count);
/llvm-project-15.0.7/llvm/utils/emacs/
H A Demacs.el9 (+ (aref in-assign 0)
/llvm-project-15.0.7/mlir/lib/ExecutionEngine/
H A DSparseTensorUtils.cpp1554 _mlir_ciface_newSparseTensor(StridedMemRefType<DimLevelType, 1> *aref, // NOLINT in _mlir_ciface_newSparseTensor() argument
1559 assert(aref && sref && pref); in _mlir_ciface_newSparseTensor()
1560 assert(aref->strides[0] == 1 && sref->strides[0] == 1 && in _mlir_ciface_newSparseTensor()
1562 assert(aref->sizes[0] == sref->sizes[0] && sref->sizes[0] == pref->sizes[0]); in _mlir_ciface_newSparseTensor()
1563 const DimLevelType *sparsity = aref->data + aref->offset; in _mlir_ciface_newSparseTensor()
1566 uint64_t rank = aref->sizes[0]; in _mlir_ciface_newSparseTensor()
1779 StridedMemRefType<index_type, 1> *aref, index_type count) { \
1780 assert(tensor &&cref &&vref &&fref &&aref); \
1784 assert(aref->strides[0] == 1); \
1789 index_type *added = aref->data + aref->offset; \
/llvm-project-15.0.7/flang/lib/Evaluate/
H A Dfold-designator.cpp271 if (auto aref{OffsetToArrayRef( in OffsetToDataRef() local
273 result = DataRef{std::move(*aref)}; in OffsetToDataRef()
/llvm-project-15.0.7/flang/lib/Lower/
H A DConvertExpr.cpp1937 static bool isSlice(const Fortran::evaluate::ArrayRef &aref) { in isSlice() argument
1956 return genOffsetAndCoordinateOp(array, aref); in genCoordinateOp()
1959 for (const auto &subsc : llvm::enumerate(aref.subscript())) { in genCoordinateOp()
2042 if (isSlice(aref)) in genOffsetAndCoordinateOp()
2080 for (const auto &sub : aref.subscript()) { in genArrayCoorOp()
2095 ExtValue gen(const Fortran::evaluate::ArrayRef &aref) { in gen() argument
2096 ExtValue base = aref.base().IsSymbol() ? gen(getFirstSym(aref.base())) in gen()
2100 return genArrayCoorOp(base, aref); in gen()
2102 return genCoordinateOp(base, aref); in gen()
2115 ExtValue genval(const Fortran::evaluate::ArrayRef &aref) { in genval() argument
[all …]
/llvm-project-15.0.7/flang/lib/Semantics/
H A Dresolve-directives.cpp767 [](const evaluate::ArrayRef &aref) { in IsLastNameArray() argument
768 return aref.base().IsSymbol() || in IsLastNameArray()
769 aref.base().GetComponent().base().Rank() == 0; in IsLastNameArray()