Home
last modified time | relevance | path

Searched refs:GetCompressRating (Results 1 – 5 of 5) sorted by relevance

/external/lzma/Java/SevenZip/
DLzmaBench.java236 static long GetCompressRating(int dictionarySize, long elapsedTime, long size) in GetCompressRating() method in LzmaBench
256 return (GetCompressRating(dictionarySize, elapsedTimeEn, sizeEn) + in GetTotalRating()
288 rating = GetCompressRating(dictionarySize, elapsedTime, size); in PrintResults()
/external/lzma/CS/7zip/Compress/LzmaAlone/
DLzmaBench.cs186 static UInt64 GetCompressRating(UInt32 dictionarySize, UInt64 elapsedTime, UInt64 size) in GetCompressRating() method in SevenZip.LzmaBench
206 return (GetCompressRating(dictionarySize, elapsedTimeEn, sizeEn) + in GetTotalRating()
237 rating = GetCompressRating(dictionarySize, elapsedTime, size); in PrintResults()
/external/lzma/CPP/7zip/UI/Common/
DBench.h28 UInt64 GetCompressRating(UInt32 dictionarySize, UInt64 elapsedTime, UInt64 freq, UInt64 size);
DBench.cpp448 UInt64 GetCompressRating(UInt32 dictionarySize, UInt64 elapsedTime, UInt64 freq, UInt64 size) in GetCompressRating() function
/external/lzma/CPP/7zip/UI/Console/
DBenchCon.cpp121 …UInt64 rating = GetCompressRating(dictionarySize, info.GlobalTime, info.GlobalFreq, info.UnpackSiz… in SetEncodeResult()