HomeSort by relevance Sort by last modified time
    Searched refs:outSize64 (Results 1 - 2 of 2) sorted by null

  /external/lzma/CPP/7zip/Bundles/LzmaCon/
LzmaAlone.cpp 345 UInt64 outSize64;
346 if (Lzma86_GetUnpackSize(inBuffer, inSize, &outSize64) != 0)
348 outSize = (size_t)outSize64;
349 if (outSize != outSize64)
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaDecoder.cs 240 UInt64 outSize64 = (UInt64)outSize;
241 if (nowPos64 < outSize64)
250 while (nowPos64 < outSize64)
252 // UInt64 next = Math.Min(nowPos64 + (1 << 18), outSize64);

Completed in 172 milliseconds