Lines Matching refs:UInt32
58 const UInt32 kDefaultLimit = (1 << 24);
60 HRESULT CEncoder::CodeReal(ISequentialInStream **inStreams, const UInt64 **inSizes, UInt32 numInStreams,
61 ISequentialOutStream **outStreams, const UInt64 ** /* outSizes */, UInt32 numOutStreams,
100 UInt32 nowPos = 0;
102 UInt32 bufferPos = 0;
112 UInt32 processedSize = 0;
115 UInt32 size = kBufferSize - (bufferPos + processedSize);
116 UInt32 processedSizeLoc;
124 UInt32 endPos = bufferPos + processedSize;
133 UInt32 index;
153 UInt32 limit = endPos - 5;
165 UInt32 src =
166 (UInt32(nextByte) << 24) |
167 (UInt32(_buffer[bufferPos + 3]) << 16) |
168 (UInt32(_buffer[bufferPos + 2]) << 8) |
170 UInt32 dest = (nowPos + bufferPos + 5) + src;
246 UInt32 i = 0;
253 STDMETHODIMP CEncoder::Code(ISequentialInStream **inStreams, const UInt64 **inSizes, UInt32 numInStreams,
254 ISequentialOutStream **outStreams, const UInt64 **outSizes, UInt32 numOutStreams,
268 STDMETHODIMP CDecoder::SetInBufSize(UInt32 streamIndex, UInt32 size) { _inBufSizes[streamIndex] = size; return S_OK; }
269 STDMETHODIMP CDecoder::SetOutBufSize(UInt32 , UInt32 size) { _outBufSize = size; return S_OK; }
280 HRESULT CDecoder::CodeReal(ISequentialInStream **inStreams, const UInt64 ** /* inSizes */, UInt32 numInStreams,
281 ISequentialOutStream **outStreams, const UInt64 ** /* outSizes */, UInt32 numOutStreams,
316 UInt32 processedBytes = 0;
332 UInt32 i;
334 const UInt32 kBurstSize = (1 << 18);
350 UInt32 src = 0;
358 src |= ((UInt32)b0);
360 UInt32 dest = src - (UInt32(_outStream.GetProcessedSize()) + 4) ;
373 STDMETHODIMP CDecoder::Code(ISequentialInStream **inStreams, const UInt64 **inSizes, UInt32 numInStreams,
374 ISequentialOutStream **outStreams, const UInt64 **outSizes, UInt32 numOutStreams,