Home
last modified time | relevance | path

Searched refs:RTNAME (Results 1 – 13 of 13) sorted by relevance

/external/llvm-project/flang/runtime/
Dcharacter.h28 void RTNAME(CharacterConcatenate)(Descriptor &accumulator,
33 void RTNAME(CharacterConcatenateScalar1)(
44 void RTNAME(CharacterAssign)(Descriptor &lhs, const Descriptor &rhs,
55 int RTNAME(CharacterCompareScalar)(const Descriptor &, const Descriptor &);
56 int RTNAME(CharacterCompareScalar1)(
58 int RTNAME(CharacterCompareScalar2)(const char16_t *x, const char16_t *y,
60 int RTNAME(CharacterCompareScalar4)(const char32_t *x, const char32_t *y,
65 void RTNAME(CharacterCompare)(
72 std::size_t RTNAME(CharacterAppend1)(char *lhs, std::size_t lhsBytes,
76 void RTNAME(CharacterPad1)(char *lhs, std::size_t bytes, std::size_t offset);
[all …]
Dallocatable.h31 void RTNAME(AllocatableInitIntrinsic)(
33 void RTNAME(AllocatableInitCharacter)(Descriptor &, SubscriptValue length = 0,
35 void RTNAME(AllocatableInitDerived)(
44 int RTNAME(AllocatableCheckAllocated)(Descriptor &,
51 void RTNAME(AllocatableApplyMold)(Descriptor &, const Descriptor &mold);
55 void RTNAME(AllocatableSetBounds)(
59 void RTNAME(AllocatableSetCoBounds)(Descriptor &, int zeroBasedCoDim,
65 void RTNAME(AllocatableSetDerivedLength)(
73 int RTNAME(AllocatableCheckLengthParameter)(Descriptor &,
87 int RTNAME(AllocatableAllocate)(Descriptor &, bool hasStat = false,
[all …]
Dstop.h19 NORETURN void RTNAME(StopStatement)(int code DEFAULT_VALUE(EXIT_SUCCESS),
21 NORETURN void RTNAME(StopStatementText)(const char *, size_t,
23 void RTNAME(PauseStatement)(NO_ARGUMENTS);
24 void RTNAME(PauseStatementInt)(int);
25 void RTNAME(PauseStatementText)(const char *, size_t);
26 NORETURN void RTNAME(FailImageStatement)(NO_ARGUMENTS);
27 NORETURN void RTNAME(ProgramEndStatement)(NO_ARGUMENTS);
Dallocatable.cpp16 void RTNAME(AllocatableInitIntrinsic)(Descriptor &descriptor, in RTNAME() function
24 void RTNAME(AllocatableInitCharacter)(Descriptor &descriptor, in RTNAME() function
31 void RTNAME(AllocatableInitDerived)(Descriptor &descriptor, in RTNAME() function
38 void RTNAME(AllocatableAssign)(Descriptor &to, const Descriptor & /*from*/) { in RTNAME() function
42 int RTNAME(MoveAlloc)(Descriptor &to, const Descriptor & /*from*/, in RTNAME() function
49 void RTNAME(AllocatableSetBounds)(Descriptor &descriptor, int zeroBasedDim, in RTNAME() function
56 int RTNAME(AllocatableAllocate)(Descriptor &descriptor, bool hasStat, in RTNAME() function
68 int RTNAME(AllocatableDeallocate)(Descriptor &descriptor, bool hasStat, in RTNAME() function
Dstop.cpp52 [[noreturn]] void RTNAME(StopStatement)( in RTNAME() function
66 [[noreturn]] void RTNAME(StopStatementText)( in RTNAME() function
94 void RTNAME(PauseStatement)() { in RTNAME() function
101 void RTNAME(PauseStatementInt)(int code) { in RTNAME() function
108 void RTNAME(PauseStatementText)(const char *code, std::size_t length) { in RTNAME() function
117 [[noreturn]] void RTNAME(FailImageStatement)() { in RTNAME() function
123 [[noreturn]] void RTNAME(ProgramEndStatement)() { in RTNAME() function
Dcharacter.cpp337 void RTNAME(CharacterConcatenate)(Descriptor &accumulator, in RTNAME() function
384 void RTNAME(CharacterConcatenateScalar1)( in RTNAME() function
398 void RTNAME(CharacterAssign)(Descriptor &lhs, const Descriptor &rhs, in RTNAME() function
539 int RTNAME(CharacterCompareScalar)(const Descriptor &x, const Descriptor &y) { in RTNAME() function
561 int RTNAME(CharacterCompareScalar1)( in RTNAME() function
566 int RTNAME(CharacterCompareScalar2)(const char16_t *x, const char16_t *y, in RTNAME() function
571 int RTNAME(CharacterCompareScalar4)(const char32_t *x, const char32_t *y, in RTNAME() function
576 void RTNAME(CharacterCompare)( in RTNAME() function
596 std::size_t RTNAME(CharacterAppend1)(char *lhs, std::size_t lhsBytes, in RTNAME() function
605 void RTNAME(CharacterPad1)(char *lhs, std::size_t bytes, std::size_t offset) { in RTNAME() function
[all …]
Dmain.h16 void RTNAME(ProgramStart)(int, const char *[], const char *[]);
17 void RTNAME(ByteswapOption)(); // -byteswapio
Dentry-names.h18 #ifndef RTNAME
21 #define RTNAME(name) NAME_WITH_PREFIX_AND_REVISION(_Fortran, A, name) macro
Dmain.cpp30 void RTNAME(ProgramStart)(int argc, const char *argv[], const char *envp[]) { in RTNAME() function
37 void RTNAME(ByteswapOption)() { in RTNAME() function
Dio-api.h54 #define IONAME(name) RTNAME(io##name)
/external/llvm-project/flang/unittests/Runtime/
Dcharacter.cpp14 xLen = RTNAME(CharacterAppend1)(x, limit, xLen, "abc", 3); in AppendAndPad()
15 xLen = RTNAME(CharacterAppend1)(x, limit, xLen, "DE", 2); in AppendAndPad()
16 RTNAME(CharacterPad1)(x, limit, xLen); in AppendAndPad()
31 int cmp{RTNAME(CharacterCompareScalar1)(x, y, xBytes, yBytes)}; in TestCharCompare()
Dexternal-hello.cpp44 RTNAME(ProgramStart)(argc, argv, envp); in main()
47 RTNAME(PauseStatement)(); in main()
48 RTNAME(ProgramEndStatement)(); in main()
/external/llvm-project/flang/lib/Lower/
DCharacterRuntime.cpp21 #define mkRTKey(X) mkKey(RTNAME(X))