Home
last modified time | relevance | path

Searched refs:kTempBufSize (Results 1 – 1 of 1) sorted by relevance

/external/lzma/CPP/7zip/Common/
DInOutTempBuffer.cpp16 static const UInt32 kTempBufSize = (1 << 20); variable
25 _buf = new Byte[kTempBufSize]; in Create()
61 if (_bufPos < kTempBufSize) in Write()
63 UInt32 cur = MyMin(kTempBufSize - _bufPos, size); in Write()
96 if (!inFile.ReadPart(_buf, kTempBufSize, processed)) in WriteToStream()