Home | History | Annotate | Download | only in Lzma

Lines Matching refs:unpackSize

56     UInt64 unpackSize)

58 int thereIsSize = (unpackSize != (UInt64)(Int64)-1);
77 if (thereIsSize && outProcessed > unpackSize)
79 outProcessed = (SizeT)unpackSize;
87 unpackSize -= outProcessed;
95 if (res != SZ_OK || (thereIsSize && unpackSize == 0))
110 UInt64 unpackSize;
123 unpackSize = 0;
125 unpackSize += (UInt64)header[LZMA_PROPS_SIZE + i] << (i * 8);
129 res = Decode2(&state, outStream, inStream, unpackSize);