Searched refs:recl (Results 1 – 6 of 6) sorted by relevance
/external/llvm-project/flang/test/Semantics/ |
D | dosemantics12.f90 | 180 pos=posVar, recl=reclVar, size=sizeVar) 187 pos=posVar, recl=reclVar, size=sizeVar) 195 pos=posVar, recl=reclVar, size=sizeVar) 203 pos=posVar, recl=reclVar, size=sizeVar) 211 pos=posVar, recl=reclVar, size=sizeVar) 219 pos=posVar, recl=reclVar, size=sizeVar) 227 pos=posVar, recl=reclVar, size=sizeVar) 235 pos=posVar, recl=reclVar, size=sizeVar) 243 pos=posVar, recl=reclVar, size=sizeVar) 251 pos=posVar, recl=reclVar, size=sizeVar) [all …]
|
D | io01.f90 | 39 open(21, access=access, recl=n) 54 open(unit=60, position='rewind', recl=(30+20/2), round='zero') 55 open(position=position_(1), recl=n, round=round_(2), unit=61) 72 open(10, access='st'//'ream', recl=13) 103 open(107, recl=40-70) 106 open(108, recl=- - (-36)) ! nonstandard 109 open(109, access=Access, action='reedwrite', recl=77) 112 open(110, action=''//'non'//'sense', recl=77)
|
D | io05.f90 | 21 nextrec=nextrec, number=number, pos=jpos, recl=jrecl, size=jsize, & 37 nextrec=iv, number=iv, pos=iv, recl=iv, size=iv, &
|
/external/llvm-project/flang/unittests/Runtime/ |
D | external-io.cpp | 23 static constexpr std::size_t recl{sizeof buffer}; in TestDirectUnformatted() local 24 IONAME(SetRecl)(io, recl) || (Fail() << "SetRecl()", 0); in TestDirectUnformatted() 38 (io, reinterpret_cast<const char *>(&buffer), recl, recl) || in TestDirectUnformatted() 50 (io, reinterpret_cast<char *>(&buffer), recl, recl) || in TestDirectUnformatted() 81 static constexpr std::size_t recl{sizeof buffer}; in TestDirectUnformattedSwapped() local 82 IONAME(SetRecl)(io, recl) || (Fail() << "SetRecl()", 0); in TestDirectUnformattedSwapped() 96 (io, reinterpret_cast<const char *>(&buffer), recl, recl) || in TestDirectUnformattedSwapped() 115 (io, reinterpret_cast<char *>(&buffer), recl, recl) || in TestDirectUnformattedSwapped() 146 static constexpr std::size_t recl{sizeof buffer}; in TestSequentialFixedUnformatted() local 147 IONAME(SetRecl)(io, recl) || (Fail() << "SetRecl()", 0); in TestSequentialFixedUnformatted() [all …]
|
/external/llvm-project/flang/runtime/ |
D | connection.cpp | 16 auto recl{recordLength.value_or( in RemainingSpaceInRecord() local 18 return positionInRecord >= recl ? 0 : recl - positionInRecord; in RemainingSpaceInRecord()
|
/external/llvm-project/flang/lib/Semantics/ |
D | check-io.cpp | 175 if (const std::optional<std::int64_t> recl{ in Enter() local 177 if (*recl <= 0) { in Enter() 180 *recl); // 12.5.6.15 in Enter()
|