Home
last modified time | relevance | path

Searched refs:minBytes (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/flang/unittests/Runtime/
H A DBufferTest.cpp32 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 Dfile.cpp190 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 Dbuffer.h85 auto minBytes{bytes - FrameLength()}; in ReadFrame()
88 fileOffset_ + length_, buffer_ + next, minBytes, maxBytes, handler)}; in ReadFrame()
H A Dfile.h52 std::size_t Read(FileOffset, char *, std::size_t minBytes,