Home | History | Annotate | Download | only in tools

Lines Matching refs:best

43         ns                         best;
123 bench.best = std::min(bench.best, elapsed / loops);
126 struct Result { const char* name; ns best; };
130 sorted[i].best = benches[i].best;
133 return a.best < b.best;
139 SkDebugf(" %s %gns" , result.name, result.best.count());
141 SkDebugf(" %s %.3gx", result.name, result.best / sorted[0].best);