Home | History | Annotate | Download | only in Compress

Lines Matching full:uint32

48 STDMETHODIMP CDecoder::SetInBufSize(UInt32 , UInt32 size) { _inBufSize = size; return S_OK; }

49 STDMETHODIMP CDecoder::SetOutBufSize(UInt32 , UInt32 size) { _outBufSize = size; return S_OK; }
64 STDMETHODIMP CDecoder::SetDecoderProperties2(const Byte *prop, UInt32 size)
125 _inPos += (UInt32)inSizeProcessed;
187 STDMETHODIMP CDecoder::Read(void *data, UInt32 size, UInt32 *processedSize)
205 size = (UInt32)rem;
212 _inPos += (UInt32)inProcessed;
215 size -= (UInt32)outProcessed;
218 *processedSize += (UInt32)outProcessed;
234 HRESULT CDecoder::ReadFromInputStream(void *data, UInt32 size, UInt32 *processedSize)
249 UInt32 curSize = _inSize - _inPos;