OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CrcOutStream
(Results
1 - 2
of
2
) 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())
Completed in 3303 milliseconds