• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:cpuFreq

62 static void SetComplexCommands(UInt32 complexInSeconds, UInt64 cpuFreq, UInt64 &complexInCommands)  in SetComplexCommands()  argument
67 if (cpuFreq < kMinFreq) cpuFreq = kMinFreq; in SetComplexCommands()
68 if (cpuFreq < kMaxFreq) in SetComplexCommands()
71 complexInCommands = complexInSeconds * cpuFreq; in SetComplexCommands()
73 complexInCommands = cpuFreq >> 2; in SetComplexCommands()
1596 …lts(IBenchPrintCallback &f, UInt64 usage, UInt64 rpu, UInt64 rating, bool showFreq, UInt64 cpuFreq) in PrintResults() argument
1603 if (cpuFreq == 0) in PrintResults()
1607 UInt64 ddd = cpuFreq * usage / 100; in PrintResults()
1611 PrintPercents(f, rating, cpuFreq, kFieldSize_Effec); in PrintResults()
1616 …allback *f, const CBenchInfo &info, UInt64 rating, bool showFreq, UInt64 cpuFreq, CTotalBenchRes *… in PrintResults() argument
1630 PrintResults(*f, usage, rpu, rating, showFreq, cpuFreq); in PrintResults()
1642 static void PrintTotals(IBenchPrintCallback &f, bool showFreq, UInt64 cpuFreq, const CTotalBenchRes… in PrintTotals() argument
1648 …res.Usage / numIterations, res.RPU / numIterations, res.Rating / numIterations, showFreq, cpuFreq); in PrintTotals()
1682 HRESULT SetFreq(bool showFreq, UInt64 cpuFreq);
1687 HRESULT CBenchCallbackToPrint::SetFreq(bool showFreq, UInt64 cpuFreq) in SetFreq() argument
1690 CpuFreq = cpuFreq; in SetFreq()
1803 UInt64 &cpuFreq, in FreqBench() argument
1807 cpuFreq = 0; in FreqBench()
1876 cpuFreq = rating / numThreads; in FreqBench()
1877 PrintResults(_file, info, rating, showFreq, showFreq ? cpuFreq : 0, NULL); in FreqBench()
1897 bool showFreq, UInt64 cpuFreq) in CrcBench() argument
2010 PrintResults(_file, info, rating, showFreq, cpuFreq, encodeRes); in CrcBench()
2026 bool showFreq, UInt64 cpuFreq) in TotalBench_Hash() argument
2048 printCallback, encodeRes, showFreq, cpuFreq); in TotalBench_Hash()
2343 UInt64 cpuFreq = 0; in Bench() local
2427 …ench(complexInCommands, numThreads, printCallback, freqTest == kNumCpuTests - 1, cpuFreq, resVal)); in Bench()
2431 SetComplexCommands(testTime, cpuFreq, complexInCommands); in Bench()
2435 callback.SetFreq(true, cpuFreq); in Bench()
2440 1 << kNumHashDictBits, printCallback, &callback, &callback.EncodeRes, true, cpuFreq); in Bench()
2447 UInt64 cpuFreqLastTemp = cpuFreq; in Bench()
2533 PrintTotals(f, showFreq, cpuFreq, callback.EncodeRes); in Bench()
2535 PrintTotals(f, showFreq, cpuFreq, callback.DecodeRes); in Bench()
2541 PrintTotals(f, showFreq, cpuFreq, midRes); in Bench()