Home
last modified time | relevance | path

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

/external/lzma/C/
DLzma2Enc.c359 UInt64 expectedDataSize; member
393 p->expectedDataSize = (UInt64)(Int64)-1; in Lzma2Enc_Create()
481 p->expectedDataSize = expectedDataSiize; in Lzma2Enc_SetDataSize()
559 if (me->expectedDataSize != (UInt64)(Int64)-1 in Lzma2Enc_EncodeMt1()
560 && me->expectedDataSize >= unpackTotal) in Lzma2Enc_EncodeMt1()
561 expected = me->expectedDataSize - unpackTotal; in Lzma2Enc_EncodeMt1()
784 p->mtCoder.expectedDataSize = p->expectedDataSize; in Lzma2Enc_Encode2()
DMtCoder.h80 UInt64 expectedDataSize; member
DLzFind.h51 UInt64 expectedDataSize; member
DXzEnc.c931 UInt64 expectedDataSize; member
1012 p->expectedDataSize = (UInt64)(Int64)-1; in XzEnc_Create()
1039 p->expectedDataSize = expectedDataSiize; in XzEnc_SetDataSize()
1200 p->mtCoder.expectedDataSize = p->expectedDataSize; in XzEnc_Encode()
DMtCoder.c213 && mtc->expectedDataSize != readProcessed) in ThreadFunc2()
376 p->expectedDataSize = (UInt64)(Int64)-1; in MtCoder_Construct()
DLzFind.c145 p->expectedDataSize = (UInt64)(Int64)-1; in MatchFinder_Construct()
213 if (hs > p->expectedDataSize) in MatchFinder_Create()
214 hs = (UInt32)p->expectedDataSize; in MatchFinder_Create()
DLzmaEnc.c512 p->matchFinderBase.expectedDataSize = expectedDataSiize; in LzmaEnc_SetDataSize()
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/utils/
DFixedLengthBlockOutputStreamTest.java214 long expectedDataSize = reps * 4L; in testWithFileOutputStream() local
215 long expectedFileSize = (long)Math.ceil(expectedDataSize/(double)blockSize)*blockSize; in testWithFileOutputStream()
221 for(int i=0;i<expectedFileSize - expectedDataSize;i++) { in testWithFileOutputStream()