Lines Matching refs:numCommands
617 UInt64 CBenchInfo::GetSpeed(UInt64 numCommands) const in GetSpeed()
619 return MyMultDiv64(numCommands, GlobalTime, GlobalFreq); in GetSpeed()
665 UInt64 numCommands = (UInt64)size * encComplex; in GetCompressRating() local
666 return MyMultDiv64(numCommands, elapsedTime, freq); in GetCompressRating()
671 UInt64 numCommands = (inSize * DecComplexCompr + outSize * DecComplexUnc) * numIterations; in GetDecompressRating() local
672 return MyMultDiv64(numCommands, elapsedTime, freq); in GetDecompressRating()
1151 static UInt64 GetNumIterations(UInt64 numCommands, UInt64 complexInCommands) in GetNumIterations() argument
1153 if (numCommands < (1 << 4)) in GetNumIterations()
1154 numCommands = (1 << 4); in GetNumIterations()
1155 UInt64 res = complexInCommands / numCommands; in GetNumIterations()
2198 UInt64 numCommands = (UInt64)numIterations * bufferSize * numThreads * complexity; in FreqBench() local
2199 UInt64 rating = info.GetSpeed(numCommands); in FreqBench()
2343 UInt64 numCommands = unpSizeThreads * complexity / 256; in CrcBench() local
2344 UInt64 rating = info.GetSpeed(numCommands); in CrcBench()