Home | History | Annotate | Download | only in Common

Lines Matching refs:CpuFreq

72     bool isSpecifiedFreq, UInt64 cpuFreq, UInt64 &complexInCommands)

77 if (cpuFreq < kMinFreq && !isSpecifiedFreq)
78 cpuFreq = kMinFreq;
79 if (cpuFreq < kMaxFreq || isSpecifiedFreq)
82 complexInCommands = complexInSeconds * cpuFreq;
84 complexInCommands = cpuFreq >> 2;
1799 static void PrintResults(IBenchPrintCallback &f, UInt64 usage, UInt64 rpu, UInt64 rating, bool showFreq, UInt64 cpuFreq)
1806 if (cpuFreq == 0)
1810 UInt64 ddd = cpuFreq * usage / 100;
1814 PrintPercents(f, rating, cpuFreq, kFieldSize_Effec);
1823 bool showFreq, UInt64 cpuFreq,
1838 PrintResults(*f, usage, rpu, rating, showFreq, cpuFreq);
1851 static void PrintTotals(IBenchPrintCallback &f, bool showFreq, UInt64 cpuFreq, const CTotalBenchRes &res)
1856 PrintResults(f, res.Usage / numIterations2, res.RPU / numIterations2, res.Rating / numIterations2, showFreq, cpuFreq);
1971 UInt64 CpuFreq;
1980 CpuFreq(0),
1989 HRESULT SetFreq(bool showFreq, UInt64 cpuFreq);
1994 HRESULT CBenchCallbackToPrint::SetFreq(bool showFreq, UInt64 cpuFreq)
1997 CpuFreq = cpuFreq;
2009 ShowFreq, CpuFreq, &EncodeRes);
2034 ShowFreq, CpuFreq, &DecodeRes);
2126 UInt64 &cpuFreq,
2130 cpuFreq = 0;
2200 cpuFreq = rating / numThreads;
2204 showFreq, showFreq ? (specifiedFreq != 0 ? specifiedFreq : cpuFreq) : 0, NULL);
2224 bool showFreq, UInt64 cpuFreq)
2347 showFreq, cpuFreq, encodeRes);
2363 bool showFreq, UInt64 cpuFreq)
2386 printCallback, encodeRes, showFreq, cpuFreq);
3281 UInt64 cpuFreq = 0;
3345 cpuFreq = specifiedFreq;
3364 cpuFreq, resVal));
3368 cpuFreq = specifiedFreq;
3371 SetComplexCommands(testTime, specifiedFreq != 0, cpuFreq, complexInCommands);
3375 callback.SetFreq(true, cpuFreq);
3389 1 << kNumHashDictBits, printCallback, &callback, &callback.EncodeRes, true, cpuFreq);
3396 UInt64 cpuFreqLastTemp = cpuFreq;
3512 PrintTotals(f, showFreq, cpuFreq, callback.EncodeRes);
3514 PrintTotals(f, showFreq, cpuFreq, callback.DecodeRes);
3521 PrintTotals(f, showFreq, cpuFreq, midRes);