Lines Matching defs:size
17 Total buffer size limit, if we use temp file scheme:
73 HRESULT CInOutTempBuffer::Write_HRESULT(const void *data, UInt32 size)
75 if (size == 0)
111 if (cur > size)
112 cur = size;
118 size -= (UInt32)cur;
119 if (size == 0)
139 if (!_outFile.WriteFull(data, size))
141 _crc = CrcUpdate(_crc, data, size);
142 _size += size;