HomeSort by relevance Sort by last modified time
    Searched defs:BytesRead (Results 1 - 19 of 19) sorted by null

  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
read.c 44 ssize_t BytesRead;
49 BytesRead = recvfrom ( pDescriptor->MyFD,
59 return BytesRead;
recv.c 51 ssize_t BytesRead;
56 BytesRead = recvfrom ( s,
66 return BytesRead;
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
MemoryFile.c 62 UINT32 BytesRead;
65 Status = GetFileImage (InputFileName, &InputFileImage, &BytesRead);
78 NewMemoryFile->Eof = InputFileImage + BytesRead;
  /external/llvm/include/llvm/Support/
StreamingMemoryObject.h 51 mutable size_t BytesRead; // Bytes read from stream
56 // Fetch enough bytes such that Pos can be read (i.e. BytesRead >
63 while (Pos >= BytesRead) {
66 Bytes.resize(BytesRead + BytesSkipped + kChunkSize);
67 size_t bytes = Streamer->GetBytes(&Bytes[BytesRead + BytesSkipped],
69 BytesRead += bytes;
72 ObjectSize = BytesRead;
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
StreamingMemoryObject.h 51 mutable size_t BytesRead; // Bytes read from stream
56 // Fetch enough bytes such that Pos can be read (i.e. BytesRead >
63 while (Pos >= BytesRead) {
66 Bytes.resize(BytesRead + BytesSkipped + kChunkSize);
67 size_t bytes = Streamer->GetBytes(&Bytes[BytesRead + BytesSkipped],
69 BytesRead += bytes;
72 ObjectSize = BytesRead;
  /external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Support/
StreamingMemoryObject.h 51 mutable size_t BytesRead; // Bytes read from stream
56 // Fetch enough bytes such that Pos can be read (i.e. BytesRead >
63 while (Pos >= BytesRead) {
66 Bytes.resize(BytesRead + BytesSkipped + kChunkSize);
67 size_t bytes = Streamer->GetBytes(&Bytes[BytesRead + BytesSkipped],
69 BytesRead += bytes;
72 ObjectSize = BytesRead;
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/Ps2MouseAbsolutePointerDxe/
CommPs2.c 495 UINTN BytesRead;
498 BytesRead = 0;
511 while (BytesRead < *BufSize) {
520 BytesRead++;
526 if (BytesRead == 0 || BytesRead != *BufSize) {
530 *BufSize = BytesRead;
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/Ps2MouseDxe/
CommPs2.c 495 UINTN BytesRead;
498 BytesRead = 0;
511 while (BytesRead < *BufSize) {
520 BytesRead++;
526 if (BytesRead == 0 || BytesRead != *BufSize) {
530 *BufSize = BytesRead;
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Isa/Ps2MouseDxe/
CommPs2.c 471 UINTN BytesRead;
486 for (BytesRead = 0; BytesRead < *BufSize; BytesRead++) {
492 Buffer[BytesRead] = IoRead8 (KBC_DATA_PORT);
497 if (BytesRead == 0 || BytesRead != *BufSize) {
501 *BufSize = BytesRead;
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTResourceFile.cpp 42 size_t BytesRead = fread(pTmp, 1, size, pFile);
44 if (BytesRead != size)
  /device/linaro/bootloader/edk2/Nt32Pkg/WinNtBlockIoDxe/
WinNtBlockIo.c 908 DWORD BytesRead;
920 Flag = Private->WinNtThunk->ReadFile (Private->NtHandle, Buffer, (DWORD) BufferSize, (LPDWORD) &BytesRead, NULL);
921 if (!Flag || (BytesRead != BufferSize)) {
  /device/linaro/bootloader/edk2/Nt32Pkg/WinNtSerialIoDxe/
WinNtSerialIo.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/TftpServer/
TftpServer.c 35 size_t BytesRead;
64 BytesRead = fread ( pContext->pFill,
68 if ( -1 == BytesRead ) {
76 pContext->BytesRemaining -= BytesRead;
77 pContext->ValidBytes += BytesRead;
81 BytesRead,
87 pContext->pFill += BytesRead;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Bitcode/
BitstreamReader.h 165 unsigned BytesRead;
167 BytesRead = sizeof(word_t);
173 BytesRead = BitcodeBytes.size() - NextChar;
175 for (unsigned B = 0; B != BytesRead; ++B)
178 NextChar += BytesRead;
179 BitsInCurWord = BytesRead * 8;
  /external/tensorflow/tensorflow/core/lib/io/
table_test.cc 144 uint64 BytesRead() const { return bytes_read_; }
247 uint64 BytesRead() const { return source_->BytesRead(); }
632 EXPECT_LT(c.BytesRead(), 200);
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VolInfo/
VolInfo.c 233 int BytesRead;
427 BytesRead = fread (FvImage, 1, FvSize, InputFile);
429 if ((unsigned int) BytesRead != FvSize) {
755 UINTN BytesRead;
758 BytesRead = 0;
771 BytesRead = sizeof (EFI_FIRMWARE_VOLUME_HEADER) - sizeof (EFI_FV_BLOCK_MAP_ENTRY);
1060 BytesRead += sizeof (EFI_FV_BLOCK_MAP_ENTRY);
1070 if (BytesRead != VolumeHeader.HeaderLength) {
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 244 uint64_t BytesRead =
248 if (BytesRead == 0) {
258 NextChar += BytesRead;
259 BitsInCurWord = BytesRead * 8;
  /external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
NaClBitstreamReader.h 666 uint64_t BytesRead = fillBuffer(Array, sizeof(Array), NextChar);
669 if (BytesRead == 0) {
677 NextChar += BytesRead;
678 BitsInCurWord = BytesRead * CHAR_BIT;
  /external/swiftshader/third_party/subzero/src/
WasmTranslator.cpp     [all...]

Completed in 527 milliseconds