Home | History | Annotate | Download | only in Console

Lines Matching refs:info

50   HRESULT SetEncodeResult(const CBenchInfo &info, bool final);

51 HRESULT SetDecodeResult(const CBenchInfo &info, bool final);
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);
115 HRESULT CBenchCallback::SetEncodeResult(const CBenchInfo &info, bool final)
121 UInt64 rating = GetCompressRating(dictionarySize, info.GlobalTime, info.GlobalFreq, info.UnpackSize);
122 PrintResults(f, info, rating, EncodeRes);
130 HRESULT CBenchCallback::SetDecodeResult(const CBenchInfo &info, bool final)
136 UInt64 rating = GetDecompressRating(info.GlobalTime, info.GlobalFreq, info.UnpackSize, info.PackSize, info.NumIterations);
138 CBenchInfo info2 = info;