Searched refs:minBytes (Results 1 – 4 of 4) sorted by relevance
| /llvm-project-15.0.7/flang/unittests/Runtime/ |
| H A D | BufferTest.cpp | 32 std::size_t Read(FileOffset at, char *to, std::size_t minBytes, in Read() argument 36 static_cast<int>(at), static_cast<int>(minBytes), in Read() 38 } else if (at < 0 || at + minBytes > bytes_) { in Read() 40 static_cast<int>(at), static_cast<int>(minBytes), in Read()
|
| /llvm-project-15.0.7/flang/runtime/ |
| H A D | file.cpp | 190 std::size_t OpenFile::Read(FileOffset at, char *buffer, std::size_t minBytes, in Read() argument 199 minBytes = std::min(minBytes, maxBytes); in Read() 201 while (got < minBytes) { in Read()
|
| H A D | buffer.h | 85 auto minBytes{bytes - FrameLength()}; in ReadFrame() 88 fileOffset_ + length_, buffer_ + next, minBytes, maxBytes, handler)}; in ReadFrame()
|
| H A D | file.h | 52 std::size_t Read(FileOffset, char *, std::size_t minBytes,
|