Lines Matching refs:size
39 UInt32 size = kBufSize;
43 if (size > rem)
45 size = (UInt32)rem;
46 if (size == 0)
61 const UInt32 curSize = size - pos;
71 size = pos;
74 if (size == 0)
82 const UInt32 curSize = size - pos;
93 while (pos < size);
96 TotalSize += size;
100 if (size != kBufSize)
123 Z7_COM7F_IMF(CCopyCoder::Read(void *data, UInt32 size, UInt32 *processedSize))
126 HRESULT res = _inStream->Read(data, size, &realProcessedSize);
145 HRESULT CopyStream_ExactSize(ISequentialInStream *inStream, ISequentialOutStream *outStream, UInt64 size, ICompressProgressInfo *progress)
149 RINOK(copyCoder->Code(inStream, outStream, NULL, &size, progress))
150 return copyCoderSpec->TotalSize == size ? S_OK : E_FAIL;