Searched refs:progressInfo (Results 1 – 3 of 3) sorted by relevance
/external/lzma/Java/SevenZip/ |
D | LzmaBench.java | 325 CProgressInfo progressInfo = new CProgressInfo(); in LzmaBenchmark() local 326 progressInfo.ApprovedStart = dictionarySize; in LzmaBenchmark() 342 progressInfo.Init(); in LzmaBenchmark() 345 encoder.Code(inStream, compressedStream, -1, -1, progressInfo); in LzmaBenchmark() 346 long encodeTime = System.currentTimeMillis() - progressInfo.Time; in LzmaBenchmark() 356 if (progressInfo.InSize == 0) in LzmaBenchmark() 373 long benchSize = kBufferSize - (long)progressInfo.InSize; in LzmaBenchmark()
|
/external/lzma/CS/7zip/Compress/LzmaAlone/ |
D | LzmaBench.cs | 281 CProgressInfo progressInfo = new CProgressInfo(); in LzmaBenchmark() 282 progressInfo.ApprovedStart = dictionarySize; in LzmaBenchmark() 294 progressInfo.Init(); in LzmaBenchmark() 297 encoder.Code(inStream, compressedStream, -1, -1, progressInfo); in LzmaBenchmark() 298 TimeSpan sp2 = DateTime.UtcNow - progressInfo.Time; in LzmaBenchmark() 302 if (progressInfo.InSize == 0) in LzmaBenchmark() 320 UInt64 benchSize = kBufferSize - (UInt64)progressInfo.InSize; in LzmaBenchmark()
|
/external/lzma/CPP/7zip/UI/Common/ |
D | Bench.cpp | 700 CMyComPtr<ICompressProgressInfo> progressInfo[2]; member 1008 RINOK(_encoder->Code(inStream, outStream, NULL, NULL, progressInfo[0])); in Encode() 1126 RINOK(decoder->Code(inStream, crcOutStream, 0, &outSize, progressInfo[decoderIndex])); in Decode() 1282 encoder.progressInfo[j] = spec; in MethodBench()
|