Lines Matching refs:rating
82 static void PrintRating(FILE *f, UInt64 rating) in PrintRating() argument
84 PrintNumber(f, rating / 1000000, 6); in PrintRating()
87 static void PrintResults(FILE *f, UInt64 usage, UInt64 rpu, UInt64 rating) in PrintResults() argument
91 PrintRating(f, rating); in PrintResults()
95 static void PrintResults(FILE *f, const CBenchInfo &info, UInt64 rating, CTotalBenchRes &res) in PrintResults() argument
100 UInt64 rpu = GetRatingPerUsage(info, rating); in PrintResults()
101 PrintResults(f, usage, rpu, rating); in PrintResults()
104 res.Rating += rating; in PrintResults()
121 …UInt64 rating = GetCompressRating(dictionarySize, info.GlobalTime, info.GlobalFreq, info.UnpackSiz… in SetEncodeResult() local
122 PrintResults(f, info, rating, EncodeRes); in SetEncodeResult()
136 …UInt64 rating = GetDecompressRating(info.GlobalTime, info.GlobalFreq, info.UnpackSize, info.PackSi… in SetDecodeResult() local
142 PrintResults(f, info2, rating, DecodeRes); in SetDecodeResult()