• Home
  • Raw
  • Download

Lines Matching refs:UInt32

24 static const UInt32 kDefaultLimit = (1 << (24 + NUM_BITS));
45 HRESULT CEncoder::CodeReal(ISequentialInStream **inStreams, const UInt64 **inSizes, UInt32 numInStr… in CodeReal()
46 ISequentialOutStream **outStreams, const UInt64 ** /* outSizes */, UInt32 numOutStreams, in CodeReal()
87 UInt32 nowPos = 0; in CodeReal()
89 UInt32 bufPos = 0; in CodeReal()
99 UInt32 processedSize = 0; in CodeReal()
102 UInt32 size = kBufSize - (bufPos + processedSize); in CodeReal()
103 UInt32 processedSizeLoc; in CodeReal()
111 UInt32 endPos = bufPos + processedSize; in CodeReal()
120 UInt32 index; in CodeReal()
140 UInt32 limit = endPos - 5; in CodeReal()
152 UInt32 src = in CodeReal()
153 (UInt32(nextByte) << 24) | in CodeReal()
154 (UInt32(_buf[bufPos + 3]) << 16) | in CodeReal()
155 (UInt32(_buf[bufPos + 2]) << 8) | in CodeReal()
157 UInt32 dest = (nowPos + bufPos + 5) + src; in CodeReal()
233 UInt32 i = 0; in CodeReal()
240 STDMETHODIMP CEncoder::Code(ISequentialInStream **inStreams, const UInt64 **inSizes, UInt32 numInSt… in Code()
241 ISequentialOutStream **outStreams, const UInt64 **outSizes, UInt32 numOutStreams, in Code()
255 STDMETHODIMP CDecoder::SetInBufSize(UInt32 streamIndex, UInt32 size) { _inBufSizes[streamIndex] = s… in SetInBufSize()
256 STDMETHODIMP CDecoder::SetOutBufSize(UInt32 , UInt32 size) { _outBufSize = size; return S_OK; } in SetOutBufSize() argument
267 HRESULT CDecoder::CodeReal(ISequentialInStream **inStreams, const UInt64 ** /* inSizes */, UInt32 n… in CodeReal()
268 ISequentialOutStream **outStreams, const UInt64 ** /* outSizes */, UInt32 numOutStreams, in CodeReal()
296 UInt32 processedBytes = 0; in CodeReal()
312 UInt32 i; in CodeReal()
314 const UInt32 kBurstSize = (1 << 18); in CodeReal()
330 UInt32 src = 0; in CodeReal()
338 src |= ((UInt32)b0); in CodeReal()
340 UInt32 dest = src - (UInt32(_outStream.GetProcessedSize()) + 4) ; in CodeReal()
353 STDMETHODIMP CDecoder::Code(ISequentialInStream **inStreams, const UInt64 **inSizes, UInt32 numInSt… in Code()
354 ISequentialOutStream **outStreams, const UInt64 **outSizes, UInt32 numOutStreams, in Code()