Lines Matching refs:complexity
29 BigOFunc* FittingCurve(BigO complexity) { in FittingCurve() argument
30 switch (complexity) { in FittingCurve()
52 std::string GetBigOString(BigO complexity) { in GetBigOString() argument
53 switch (complexity) { in GetBigOString()
97 result.complexity = oLambda; in MinimalLeastSq()
124 const std::vector<double>& time, const BigO complexity) { in MinimalLeastSq() argument
128 BM_CHECK_NE(complexity, oNone); in MinimalLeastSq()
132 if (complexity == oAuto) { in MinimalLeastSq()
137 best_fit.complexity = o1; in MinimalLeastSq()
144 best_fit.complexity = fit; in MinimalLeastSq()
148 best_fit = MinimalLeastSq(n, time, FittingCurve(complexity)); in MinimalLeastSq()
149 best_fit.complexity = complexity; in MinimalLeastSq()
181 if (reports[0].complexity == oLambda) { in ComputeBigO()
185 const BigO* InitialBigO = &reports[0].complexity; in ComputeBigO()
190 InitialBigO = &result_real.complexity; in ComputeBigO()
194 InitialBigO = &result_cpu.complexity; in ComputeBigO()
220 big_o.complexity = result_cpu.complexity; in ComputeBigO()
245 rms.complexity = result_cpu.complexity; in ComputeBigO()