OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:crcOutStream
(Results
1 - 3
of
3
) sorted by null
/external/lzma/Java/SevenZip/
LzmaBench.java
114
static class
CrcOutStream
extends java.io.OutputStream
337
CrcOutStream
crcOutStream
= new
CrcOutStream
();
363
crcOutStream
.Init();
367
if (!decoder.Code(inputCompressedStream,
crcOutStream
, outSize))
370
if (
crcOutStream
.GetDigest() != crc.GetDigest())
/external/lzma/CS/7zip/Compress/LzmaAlone/
LzmaBench.cs
120
class
CrcOutStream
: System.IO.Stream
291
CrcOutStream
crcOutStream
= new
CrcOutStream
();
309
crcOutStream
.Init();
314
decoder.Code(compressedStream,
crcOutStream
, 0, (Int64)outSize, null);
317
if (
crcOutStream
.GetDigest() != crc.GetDigest())
/external/lzma/CPP/7zip/UI/Common/
Bench.cpp
634
CMyComPtr<ISequentialOutStream>
crcOutStream
= crcOutStreamSpec;
647
RINOK(decoder->Code(inStream,
crcOutStream
, 0, &outSize, progressInfo[decoderIndex]));
Completed in 61 milliseconds