Lines Matching full:uint64
19 UInt64 NumIterations;
20 UInt64 Rating;
21 UInt64 Usage;
22 UInt64 RPU;
54 static void NormalizeVals(UInt64 &v1, UInt64 &v2)
63 static UInt64 MyMultDiv64(UInt64 value, UInt64 elapsedTime, UInt64 freq)
65 UInt64 elTime = elapsedTime;
72 static void PrintNumber(FILE *f, UInt64 value, int size)
82 static void PrintRating(FILE *f, UInt64 rating)
87 static void PrintResults(FILE *f, UInt64 usage, UInt64 rpu, UInt64 rating)
95 static void PrintResults(FILE *f, const CBenchInfo &info, UInt64 rating, CTotalBenchRes &res)
97 UInt64 speed = MyMultDiv64(info.UnpackSize, info.GlobalTime, info.GlobalFreq);
99 UInt64 usage = GetUsage(info);
100 UInt64 rpu = GetRatingPerUsage(info, rating);
121 UInt64 rating = GetCompressRating(dictionarySize, info.GlobalTime, info.GlobalFreq, info.UnpackSize);
136 UInt64 rating = GetDecompressRating(info.GlobalTime, info.GlobalFreq, info.UnpackSize, info.PackSize, info.NumIterations);
147 static void PrintRequirements(FILE *f, const char *sizeString, UInt64 size, const char *threadsString, UInt32 numThreads)
161 UInt64 ramSize = NWindows::NSystem::GetRamSize(); //
236 UInt64 *Values;
237 CTempValues(UInt32 num) { Values = new UInt64[num]; }
247 UInt64 ramSize = NWindows::NSystem::GetRamSize();
267 UInt64 numSteps = 0;
276 UInt64 speed;