Searched refs:crcOutStream (Results 1 - 3 of 3) sorted by relevance

/external/lzma/CS/7zip/Compress/LzmaAlone/
H A DLzmaBench.cs291 CrcOutStream crcOutStream = new CrcOutStream();
309 crcOutStream.Init();
314 decoder.Code(compressedStream, crcOutStream, 0, (Int64)outSize, null);
317 if (crcOutStream.GetDigest() != crc.GetDigest())
/external/lzma/Java/SevenZip/
H A DLzmaBench.java337 CrcOutStream crcOutStream = new CrcOutStream();
363 crcOutStream.Init();
367 if (!decoder.Code(inputCompressedStream, crcOutStream, outSize))
370 if (crcOutStream.GetDigest() != crc.GetDigest())
/external/lzma/CPP/7zip/UI/Common/
H A DBench.cpp634 CMyComPtr<ISequentialOutStream> crcOutStream = crcOutStreamSpec; local
647 RINOK(decoder->Code(inStream, crcOutStream, 0, &outSize, progressInfo[decoderIndex]));

Completed in 2719 milliseconds