Searched refs:processedSize (Results 1 - 25 of 87) sorted by relevance

1234

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/lzma/CPP/7zip/Common/
H A DStreamUtils.cpp8 HRESULT ReadStream(ISequentialInStream *stream, void *data, UInt32 size, UInt32 *processedSize) argument
10 if (processedSize != 0)
11 *processedSize = 0;
16 if (processedSize != 0)
17 *processedSize += processedSizeLoc;
27 HRESULT WriteStream(ISequentialOutStream *stream, const void *data, UInt32 size, UInt32 *processedSize) argument
29 if (processedSize != 0)
30 *processedSize = 0;
35 if (processedSize != 0)
36 *processedSize
[all...]
H A DStreamUtils.h8 HRESULT ReadStream(ISequentialInStream *stream, void *data, UInt32 size, UInt32 *processedSize);
9 HRESULT WriteStream(ISequentialOutStream *stream, const void *data, UInt32 size, UInt32 *processedSize);
H A DStreamObjects.cpp9 STDMETHODIMP CSequentialInStreamImp::Read(void *data, UInt32 size, UInt32 *processedSize) argument
14 if(processedSize != NULL)
15 *processedSize = numBytesToRead;
28 STDMETHODIMP CSequentialOutStreamImp::Write(const void *data, UInt32 size, UInt32 *processedSize) argument
31 if(processedSize != NULL)
32 *processedSize = size;
36 STDMETHODIMP CSequentialOutStreamImp2::Write(const void *data, UInt32 size, UInt32 *processedSize) argument
42 if(processedSize != NULL)
43 *processedSize = newSize;
50 STDMETHODIMP CSequentialInStreamSizeCount::Read(void *data, UInt32 size, UInt32 *processedSize) argument
60 Write(const void *data, UInt32 size, UInt32 *processedSize) argument
[all...]
H A DLockedStream.cpp8 UInt32 *processedSize)
12 return _stream->Read(data, size, processedSize);
15 STDMETHODIMP CLockedSequentialInStreamImp::Read(void *data, UInt32 size, UInt32 *processedSize) argument
20 if (processedSize != NULL)
21 *processedSize = realProcessedSize;
7 Read(UInt64 startPos, void *data, UInt32 size, UInt32 *processedSize) argument
H A DLimitedStreams.cpp8 STDMETHODIMP CLimitedSequentialInStream::Read(void *data, UInt32 size, UInt32 *processedSize) argument
20 if(processedSize != NULL)
21 *processedSize = realProcessedSize;
H A DInBuffer.h59 void ReadBytes(void *data, UInt32 size, UInt32 &processedSize) argument
61 for(processedSize = 0; processedSize < size; processedSize++)
62 if (!ReadByte(((Byte *)data)[processedSize]))
67 UInt32 processedSize; local
68 ReadBytes(data, size, processedSize);
69 return (processedSize == size);
H A DFileStreams.cpp55 STDMETHODIMP CInFileStream::Read(void *data, UInt32 size, UInt32 *processedSize) argument
61 if(processedSize != NULL)
62 *processedSize = realProcessedSize;
67 if(processedSize != NULL)
68 *processedSize = 0;
72 if(processedSize != NULL)
73 *processedSize = (UInt32)res;
80 STDMETHODIMP CStdInFileStream::Read(void *data, UInt32 size, UInt32 *processedSize) argument
86 if(processedSize != NULL)
87 *processedSize
153 Write(const void *data, UInt32 size, UInt32 *processedSize) argument
219 Write(const void *data, UInt32 size, UInt32 *processedSize) argument
[all...]
H A DInOutTempBuffer.cpp56 UInt32 processedSize; local
57 if(!_outFile.Write(data, size, processedSize))
59 _fileSize += processedSize;
60 return (processedSize == size);
111 STDMETHODIMP CSequentialOutTempBufferImp::Write(const void *data, UInt32 size, UInt32 *processedSize) argument
115 if (processedSize != NULL)
116 *processedSize = 0;
119 if (processedSize != NULL)
120 *processedSize = size;
H A DStreamBinder.cpp19 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
27 STDMETHODIMP CSequentialInStreamForBinder::Read(void *data, UInt32 size, UInt32 *processedSize) argument
28 { return m_StreamBinder->Read(data, size, processedSize); }
37 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
46 STDMETHODIMP CSequentialOutStreamForBinder::Write(const void *data, UInt32 size, UInt32 *processedSize) argument
47 { return m_StreamBinder->Write(data, size, processedSize); }
90 HRESULT CStreamBinder::Read(void *data, UInt32 size, UInt32 *processedSize) argument
109 if (processedSize != NULL)
110 *processedSize = sizeToRead;
120 HRESULT CStreamBinder::Write(const void *data, UInt32 size, UInt32 *processedSize) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/lzma/CPP/7zip/Common/
H A DStreamUtils.cpp8 HRESULT ReadStream(ISequentialInStream *stream, void *data, UInt32 size, UInt32 *processedSize) argument
10 if (processedSize != 0)
11 *processedSize = 0;
16 if (processedSize != 0)
17 *processedSize += processedSizeLoc;
27 HRESULT WriteStream(ISequentialOutStream *stream, const void *data, UInt32 size, UInt32 *processedSize) argument
29 if (processedSize != 0)
30 *processedSize = 0;
35 if (processedSize != 0)
36 *processedSize
[all...]
H A DStreamUtils.h8 HRESULT ReadStream(ISequentialInStream *stream, void *data, UInt32 size, UInt32 *processedSize);
9 HRESULT WriteStream(ISequentialOutStream *stream, const void *data, UInt32 size, UInt32 *processedSize);
H A DStreamObjects.cpp9 STDMETHODIMP CSequentialInStreamImp::Read(void *data, UInt32 size, UInt32 *processedSize) argument
14 if(processedSize != NULL)
15 *processedSize = numBytesToRead;
28 STDMETHODIMP CSequentialOutStreamImp::Write(const void *data, UInt32 size, UInt32 *processedSize) argument
31 if(processedSize != NULL)
32 *processedSize = size;
36 STDMETHODIMP CSequentialOutStreamImp2::Write(const void *data, UInt32 size, UInt32 *processedSize) argument
42 if(processedSize != NULL)
43 *processedSize = newSize;
50 STDMETHODIMP CSequentialInStreamSizeCount::Read(void *data, UInt32 size, UInt32 *processedSize) argument
60 Write(const void *data, UInt32 size, UInt32 *processedSize) argument
[all...]
H A DLockedStream.cpp8 UInt32 *processedSize)
12 return _stream->Read(data, size, processedSize);
15 STDMETHODIMP CLockedSequentialInStreamImp::Read(void *data, UInt32 size, UInt32 *processedSize) argument
20 if (processedSize != NULL)
21 *processedSize = realProcessedSize;
7 Read(UInt64 startPos, void *data, UInt32 size, UInt32 *processedSize) argument
H A DLimitedStreams.cpp8 STDMETHODIMP CLimitedSequentialInStream::Read(void *data, UInt32 size, UInt32 *processedSize) argument
20 if(processedSize != NULL)
21 *processedSize = realProcessedSize;
H A DInBuffer.h59 void ReadBytes(void *data, UInt32 size, UInt32 &processedSize) argument
61 for(processedSize = 0; processedSize < size; processedSize++)
62 if (!ReadByte(((Byte *)data)[processedSize]))
67 UInt32 processedSize; local
68 ReadBytes(data, size, processedSize);
69 return (processedSize == size);
H A DFileStreams.cpp55 STDMETHODIMP CInFileStream::Read(void *data, UInt32 size, UInt32 *processedSize) argument
61 if(processedSize != NULL)
62 *processedSize = realProcessedSize;
67 if(processedSize != NULL)
68 *processedSize = 0;
72 if(processedSize != NULL)
73 *processedSize = (UInt32)res;
80 STDMETHODIMP CStdInFileStream::Read(void *data, UInt32 size, UInt32 *processedSize) argument
86 if(processedSize != NULL)
87 *processedSize
153 Write(const void *data, UInt32 size, UInt32 *processedSize) argument
219 Write(const void *data, UInt32 size, UInt32 *processedSize) argument
[all...]
H A DInOutTempBuffer.cpp56 UInt32 processedSize; local
57 if(!_outFile.Write(data, size, processedSize))
59 _fileSize += processedSize;
60 return (processedSize == size);
111 STDMETHODIMP CSequentialOutTempBufferImp::Write(const void *data, UInt32 size, UInt32 *processedSize) argument
115 if (processedSize != NULL)
116 *processedSize = 0;
119 if (processedSize != NULL)
120 *processedSize = size;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/lzma/CPP/7zip/Common/
H A DStreamUtils.cpp8 HRESULT ReadStream(ISequentialInStream *stream, void *data, UInt32 size, UInt32 *processedSize) argument
10 if (processedSize != 0)
11 *processedSize = 0;
16 if (processedSize != 0)
17 *processedSize += processedSizeLoc;
27 HRESULT WriteStream(ISequentialOutStream *stream, const void *data, UInt32 size, UInt32 *processedSize) argument
29 if (processedSize != 0)
30 *processedSize = 0;
35 if (processedSize != 0)
36 *processedSize
[all...]
H A DStreamUtils.h8 HRESULT ReadStream(ISequentialInStream *stream, void *data, UInt32 size, UInt32 *processedSize);
9 HRESULT WriteStream(ISequentialOutStream *stream, const void *data, UInt32 size, UInt32 *processedSize);
H A DStreamObjects.cpp9 STDMETHODIMP CSequentialInStreamImp::Read(void *data, UInt32 size, UInt32 *processedSize) argument
14 if(processedSize != NULL)
15 *processedSize = numBytesToRead;
28 STDMETHODIMP CSequentialOutStreamImp::Write(const void *data, UInt32 size, UInt32 *processedSize) argument
31 if(processedSize != NULL)
32 *processedSize = size;
36 STDMETHODIMP CSequentialOutStreamImp2::Write(const void *data, UInt32 size, UInt32 *processedSize) argument
42 if(processedSize != NULL)
43 *processedSize = newSize;
50 STDMETHODIMP CSequentialInStreamSizeCount::Read(void *data, UInt32 size, UInt32 *processedSize) argument
60 Write(const void *data, UInt32 size, UInt32 *processedSize) argument
[all...]
H A DLockedStream.cpp8 UInt32 *processedSize)
12 return _stream->Read(data, size, processedSize);
15 STDMETHODIMP CLockedSequentialInStreamImp::Read(void *data, UInt32 size, UInt32 *processedSize) argument
20 if (processedSize != NULL)
21 *processedSize = realProcessedSize;
7 Read(UInt64 startPos, void *data, UInt32 size, UInt32 *processedSize) argument
H A DLimitedStreams.cpp8 STDMETHODIMP CLimitedSequentialInStream::Read(void *data, UInt32 size, UInt32 *processedSize) argument
20 if(processedSize != NULL)
21 *processedSize = realProcessedSize;
H A DInBuffer.h59 void ReadBytes(void *data, UInt32 size, UInt32 &processedSize) argument
61 for(processedSize = 0; processedSize < size; processedSize++)
62 if (!ReadByte(((Byte *)data)[processedSize]))
67 UInt32 processedSize; local
68 ReadBytes(data, size, processedSize);
69 return (processedSize == size);
H A DFileStreams.cpp55 STDMETHODIMP CInFileStream::Read(void *data, UInt32 size, UInt32 *processedSize) argument
61 if(processedSize != NULL)
62 *processedSize = realProcessedSize;
67 if(processedSize != NULL)
68 *processedSize = 0;
72 if(processedSize != NULL)
73 *processedSize = (UInt32)res;
80 STDMETHODIMP CStdInFileStream::Read(void *data, UInt32 size, UInt32 *processedSize) argument
86 if(processedSize != NULL)
87 *processedSize
153 Write(const void *data, UInt32 size, UInt32 *processedSize) argument
219 Write(const void *data, UInt32 size, UInt32 *processedSize) argument
[all...]
H A DInOutTempBuffer.cpp56 UInt32 processedSize; local
57 if(!_outFile.Write(data, size, processedSize))
59 _fileSize += processedSize;
60 return (processedSize == size);
111 STDMETHODIMP CSequentialOutTempBufferImp::Write(const void *data, UInt32 size, UInt32 *processedSize) argument
115 if (processedSize != NULL)
116 *processedSize = 0;
119 if (processedSize != NULL)
120 *processedSize = size;

Completed in 74 milliseconds

1234