Searched refs:BytesRead (Results 1 – 5 of 5) sorted by relevance
/external/llvm/include/llvm/Support/ |
D | StreamingMemoryObject.h | 51 mutable size_t BytesRead; // Bytes read from stream variable 63 while (Pos >= BytesRead) { in fetchToPos() 66 Bytes.resize(BytesRead + BytesSkipped + kChunkSize); in fetchToPos() 67 size_t bytes = Streamer->GetBytes(&Bytes[BytesRead + BytesSkipped], in fetchToPos() 69 BytesRead += bytes; in fetchToPos() 72 ObjectSize = BytesRead; in fetchToPos()
|
/external/llvm/lib/Support/ |
D | StreamingMemoryObject.cpp | 81 size_t pos = BytesRead + kChunkSize; in getExtent() 94 (ObjectSize && ObjectSize < BytesRead) ? ObjectSize : BytesRead; in readBytes() 114 if (BytesRead < s) return true; in dropLeadingBytes() 116 BytesRead -= s; in dropLeadingBytes() 123 if (ObjectSize <= BytesRead) in setKnownObjectSize() 134 : Bytes(kChunkSize), Streamer(std::move(Streamer)), BytesRead(0), in StreamingMemoryObject() 136 BytesRead = this->Streamer->GetBytes(&Bytes[0], kChunkSize); in StreamingMemoryObject()
|
D | Path.cpp | 905 int BytesRead = 0, BytesWritten = 0; in copy_file() local 907 BytesRead = read(ReadFD, Buf, BufSize); in copy_file() 908 if (BytesRead <= 0) in copy_file() 910 while (BytesRead) { in copy_file() 911 BytesWritten = write(WriteFD, Buf, BytesRead); in copy_file() 914 BytesRead -= BytesWritten; in copy_file() 923 if (BytesRead < 0 || BytesWritten < 0) in copy_file()
|
/external/llvm/include/llvm/Bitcode/ |
D | BitstreamReader.h | 244 uint64_t BytesRead = in fillCurWord() local 248 if (BytesRead == 0) { in fillCurWord() 258 NextChar += BytesRead; in fillCurWord() 259 BitsInCurWord = BytesRead * 8; in fillCurWord()
|
/external/swiftshader/third_party/PowerVR_SDK/Tools/ |
D | PVRTResourceFile.cpp | 42 size_t BytesRead = fread(pTmp, 1, size, pFile); in LoadFileFunc() local 44 if (BytesRead != size) in LoadFileFunc()
|