Home
last modified time | relevance | path

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

/llvm-project-15.0.7/flang/runtime/
H A Dallocatable.cpp20 TypeCategory category, int kind, int rank, int corank) { in RTNAME()
21 INTERNAL_CHECK(corank == 0); in RTNAME()
28 SubscriptValue length, int kind, int rank, int corank) { in RTNAME()
29 INTERNAL_CHECK(corank == 0); in RTNAME()
35 const typeInfo::DerivedType &derivedType, int rank, int corank) { in RTNAME()
36 INTERNAL_CHECK(corank == 0); in RTNAME()
H A Dpointer.cpp20 int kind, int rank, int corank) { in RTNAME()
21 INTERNAL_CHECK(corank == 0); in RTNAME()
28 int kind, int rank, int corank) { in RTNAME()
29 INTERNAL_CHECK(corank == 0); in RTNAME()
35 const typeInfo::DerivedType &derivedType, int rank, int corank) { in RTNAME()
36 INTERNAL_CHECK(corank == 0); in RTNAME()
/llvm-project-15.0.7/flang/include/flang/Runtime/
H A Dallocatable.h30 Descriptor &, TypeCategory, int kind, int rank = 0, int corank = 0);
32 int kind = 1, int rank = 0, int corank = 0);
34 Descriptor &, const typeInfo::DerivedType &, int rank = 0, int corank = 0);
H A Dpointer.h25 Descriptor &, TypeCategory, int kind, int rank = 0, int corank = 0);
27 int kind = 1, int rank = 0, int corank = 0);
29 Descriptor &, const typeInfo::DerivedType &, int rank = 0, int corank = 0);
/llvm-project-15.0.7/flang/lib/Semantics/
H A Dcheck-call.cpp450 actualLastSymbol->Corank() != dummy.type.corank()) { in CheckExplicitDataArg()
453 dummyName, dummy.type.corank(), actualLastSymbol->Corank()); in CheckExplicitDataArg()
523 if (dummy.type.corank() > 0) { in CheckExplicitDataArg()
524 if (actualType.corank() == 0) { in CheckExplicitDataArg()
H A Dpointer-assignment.cpp211 } else if (rhsType->corank() > 0 && in Check()
H A Dcheck-declarations.cpp1095 if (ddo->type.corank() > 0) { in CheckFinal()
/llvm-project-15.0.7/flang/include/flang/Evaluate/
H A Dcharacteristics.h145 int corank() const { return corank_; } in corank() function
/llvm-project-15.0.7/flang/lib/Lower/
H A DAllocatable.cpp160 int corank = 0; in genRuntimeInitCharacter() local
161 args.push_back(builder.createIntegerConstant(loc, inputTypes[4], corank)); in genRuntimeInitCharacter()