Lines Matching refs:UInt64
172 static UInt64 MyMultDiv64(UInt64 value, UInt64 elapsedTime) in MyMultDiv64()
174 UInt64 freq = TimeSpan.TicksPerSecond; in MyMultDiv64()
175 UInt64 elTime = elapsedTime; in MyMultDiv64()
186 static UInt64 GetCompressRating(UInt32 dictionarySize, UInt64 elapsedTime, UInt64 size) in GetCompressRating()
188 UInt64 t = GetLogSize(dictionarySize) - (18 << kSubBits); in GetCompressRating()
189 UInt64 numCommandsForOne = 1060 + ((t * t * 10) >> (2 * kSubBits)); in GetCompressRating()
190 UInt64 numCommands = (UInt64)(size) * numCommandsForOne; in GetCompressRating()
194 static UInt64 GetDecompressRating(UInt64 elapsedTime, UInt64 outSize, UInt64 inSize) in GetDecompressRating()
196 UInt64 numCommands = inSize * 220 + outSize * 20; in GetDecompressRating()
200 static UInt64 GetTotalRating( in GetTotalRating()
202 UInt64 elapsedTimeEn, UInt64 sizeEn, in GetTotalRating()
203 UInt64 elapsedTimeDe, in GetTotalRating()
204 UInt64 inSizeDe, UInt64 outSizeDe) in GetTotalRating()
210 static void PrintValue(UInt64 v) in PrintValue()
218 static void PrintRating(UInt64 rating) in PrintRating()
226 UInt64 elapsedTime, in PrintResults()
227 UInt64 size, in PrintResults()
228 bool decompressMode, UInt64 secondSize) in PrintResults()
230 UInt64 speed = MyMultDiv64(size, elapsedTime); in PrintResults()
233 UInt64 rating; in PrintResults()
284 UInt64 totalBenchSize = 0; in LzmaBenchmark()
285 UInt64 totalEncodeTime = 0; in LzmaBenchmark()
286 UInt64 totalDecodeTime = 0; in LzmaBenchmark()
287 UInt64 totalCompressedSize = 0; in LzmaBenchmark()
299 UInt64 encodeTime = (UInt64)sp2.Ticks; in LzmaBenchmark()
305 UInt64 decodeTime = 0; in LzmaBenchmark()
312 UInt64 outSize = kBufferSize; in LzmaBenchmark()
320 UInt64 benchSize = kBufferSize - (UInt64)progressInfo.InSize; in LzmaBenchmark()
335 kBufferSize * (UInt64)numIterations, true, totalCompressedSize); in LzmaBenchmark()