Home | History | Annotate | Download | only in Common

Lines Matching full:numcommands

534 UInt64 CBenchInfo::GetSpeed(UInt64 numCommands) const

536 return MyMultDiv64(numCommands, GlobalTime, GlobalFreq);
582 UInt64 numCommands = (UInt64)size * encComplex;
583 return MyMultDiv64(numCommands, elapsedTime, freq);
588 UInt64 numCommands = (inSize * DecComplexCompr + outSize * DecComplexUnc) * numIterations;
589 return MyMultDiv64(numCommands, elapsedTime, freq);
1013 static UInt64 GetNumIterations(UInt64 numCommands, UInt64 complexInCommands)
1015 if (numCommands < (1 << 4))
1016 numCommands = (1 << 4);
1017 UInt64 res = complexInCommands / numCommands;
1874 UInt64 numCommands = (UInt64)numIterations * bufferSize * numThreads * complexity;
1875 UInt64 rating = info.GetSpeed(numCommands);
2008 UInt64 numCommands = unpSizeThreads * complexity / 256;
2009 UInt64 rating = info.GetSpeed(numCommands);