Lines Matching full:uint64
239 static UInt64 GetTimeCount()
245 return (UInt64)(v.tv_sec) * 1000000 + v.tv_usec;
246 return (UInt64)time(NULL) * 1000000;
260 static UInt64 GetFreq()
279 static inline UInt64 GetTime64(const FILETIME &t) { return ((UInt64)t.dwHighDateTime << 32) | t.dwLowDateTime; }
282 static UInt64 GetUserTime()
296 return (UInt64)GetTickCount() * 10000;
300 static UInt64 GetUserFreq()
344 STDMETHOD(SetRatioInfo)(const UInt64 *inSize, const UInt64 *outSize);
363 STDMETHODIMP CBenchProgressInfo::SetRatioInfo(const UInt64 *inSize, const UInt64 *outSize)
400 static void NormalizeVals(UInt64 &v1, UInt64 &v2)
409 UInt64 GetUsage(const CBenchInfo &info)
411 UInt64 userTime = info.UserTime;
412 UInt64 userFreq = info.UserFreq;
413 UInt64 globalTime = info.GlobalTime;
414 UInt64 globalFreq = info.GlobalFreq;
424 UInt64 GetRatingPerUsage(const CBenchInfo &info, UInt64 rating)
426 UInt64 userTime = info.UserTime;
427 UInt64 userFreq = info.UserFreq;
428 UInt64 globalTime = info.GlobalTime;
429 UInt64 globalFreq = info.GlobalFreq;
439 static UInt64 MyMultDiv64(UInt64 value, UInt64 elapsedTime, UInt64 freq)
441 UInt64 elTime = elapsedTime;
448 UInt64 GetCompressRating(UInt32 dictionarySize, UInt64 elapsedTime, UInt64 freq, UInt64 size)
450 UInt64 t = GetLogSize(dictionarySize) - (kBenchMinDicLogSize << kSubBits);
451 UInt64 numCommandsForOne = 870 + ((t * t * 5) >> (2 * kSubBits));
452 UInt64 numCommands = (UInt64)(size) * numCommandsForOne;
456 UInt64 GetDecompressRating(UInt64 elapsedTime, UInt64 freq, UInt64 outSize, UInt64 inSize, UInt32 numIterations)
458 UInt64 numCommands = (inSize * 200 + outSize * 4) * numIterations;
646 UInt64 outSize = kBufferSize;
849 inline UInt64 GetLZMAUsage(bool multiThread, UInt32 dictionary)
861 return ((hs + (1 << 16)) + (UInt64)dictionary * 2) * 4 + (UInt64)dictionary * 3 / 2 +
865 UInt64 GetBenchMemoryUsage(UInt32 numThreads, UInt32 dictionary)
969 HRESULT CrcBench(UInt32 numThreads, UInt32 bufferSize, UInt64 &speed)
985 UInt64 timeVal;
1025 UInt64 size = (UInt64)numCycles * totalSize;