Lines Matching refs:UInt32
9 STDMETHODIMP CLimitedSequentialInStream::Read(void *data, UInt32 size, UInt32 *processedSize) in Read()
11 UInt32 realProcessedSize = 0; in Read()
15 size = (UInt32)rem; in Read()
30 STDMETHODIMP CLimitedInStream::Read(void *data, UInt32 size, UInt32 *processedSize) in Read()
43 size = (UInt32)rem; in Read()
59 STDMETHODIMP CLimitedInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) in Seek()
88 STDMETHODIMP CClusterInStream::Read(void *data, UInt32 size, UInt32 *processedSize) in Read()
97 size = (UInt32)rem; in Read()
104 const UInt32 blockSize = (UInt32)1 << BlockSizeLog; in Read()
105 const UInt32 virtBlock = (UInt32)(_virtPos >> BlockSizeLog); in Read()
106 const UInt32 offsetInBlock = (UInt32)_virtPos & (blockSize - 1); in Read()
107 const UInt32 phyBlock = Vector[virtBlock]; in Read()
118 …for (int i = 1; i < 64 && (virtBlock + i) < (UInt32)Vector.Size() && phyBlock + i == Vector[virtBl… in Read()
119 _curRem += (UInt32)1 << BlockSizeLog; in Read()
133 STDMETHODIMP CClusterInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) in Seek()
153 STDMETHODIMP CExtentsStream::Read(void *data, UInt32 size, UInt32 *processedSize) in Read()
185 size = (UInt32)rem; in Read()
195 STDMETHODIMP CExtentsStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) in Seek()
213 STDMETHODIMP CLimitedSequentialOutStream::Write(const void *data, UInt32 size, UInt32 *processedSiz… in Write()
229 size = (UInt32)_size; in Write()
240 STDMETHODIMP CTailInStream::Read(void *data, UInt32 size, UInt32 *processedSize) in Read()
242 UInt32 cur; in Read()
250 STDMETHODIMP CTailInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) in Seek()
277 STDMETHODIMP CLimitedCachedInStream::Read(void *data, UInt32 size, UInt32 *processedSize) in Read()
289 size = (UInt32)rem; in Read()
317 STDMETHODIMP CLimitedCachedInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) in Seek()
334 STDMETHODIMP CTailOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize) in Write()
336 UInt32 cur; in Write()
346 STDMETHODIMP CTailOutStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) in Seek()