Searched refs:BytesRead (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/sys/dev/acpica/Osd/
H A DOsdDebug.c51 AcpiOsGetLine(char *Buffer, UINT32 BufferLength, UINT32 *BytesRead) argument
61 if (BytesRead != NULL)
62 *BytesRead = cp - Buffer;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DRandomNumberGenerator.cpp72 ssize_t BytesRead = read(Fd, Buffer, Size);
73 if (BytesRead == -1)
75 else if (BytesRead != static_cast<ssize_t>(Size))
H A DPath.cpp965 int BytesRead = 0, BytesWritten = 0;
967 BytesRead = read(ReadFD, Buf, BufSize);
968 if (BytesRead <= 0)
970 while (BytesRead) {
971 BytesWritten = write(WriteFD, Buf, BytesRead);
974 BytesRead -= BytesWritten;
981 if (BytesRead < 0 || BytesWritten < 0)
1023 int BytesRead = 0;
1025 BytesRead = read(FD, Buf.data(), BufSize);
1026 if (BytesRead <
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_x86_64.cpp35 ssize_t BytesRead; variable
37 while (BytesToRead && (BytesRead = read(Fd, Begin, BytesToRead))) {
38 if (BytesRead == -1) {
45 TotalBytesRead += BytesRead;
46 BytesToRead -= BytesRead;
47 Begin += BytesRead;
59 ssize_t BytesRead; variable
61 std::tie(BytesRead, Success) = retryingReadSome(Fd, Line, Line + BufSize);
/freebsd-11-stable/sys/contrib/dev/acpica/common/
H A Dacgetline.c255 * BytesRead - Where the actual byte count is returned
270 UINT32 *BytesRead)
383 if (BytesRead)
385 *BytesRead = EndOfLine;
267 AcpiOsGetLine( char *Buffer, UINT32 BufferLength, UINT32 *BytesRead) argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Bitstream/
H A DBitstreamReader.h171 unsigned BytesRead; local
173 BytesRead = sizeof(word_t);
179 BytesRead = BitcodeBytes.size() - NextChar;
181 for (unsigned B = 0; B != BytesRead; ++B)
184 NextChar += BytesRead;
185 BitsInCurWord = BytesRead * 8;
/freebsd-11-stable/sys/contrib/dev/acpica/os_specific/service_layers/
H A Dosunixxf.c201 UINT32 *BytesRead);
639 * BytesRead - Where the actual byte count is returned
653 UINT32 *BytesRead)
687 if (BytesRead)
689 *BytesRead = EndOfLine;
650 AcpiOsGetLine( char *Buffer, UINT32 BufferLength, UINT32 *BytesRead) argument
/freebsd-11-stable/sys/contrib/dev/acpica/include/
H A Dacpiosxf.h608 UINT32 *BytesRead);

Completed in 133 milliseconds