| 33 | } |
| 34 | |
| 35 | static void __noinline evaluateDelegate(const char* name, TestDelegate delegate, int testParam) |
| 36 | { |
| 37 | timer.start(); |
| 38 | for(unsigned i = 0; i < ITERATIONS; ++i) { |
| 39 | delegate(testParam); |
| 40 | } |
| 41 | unsigned ticks = timer.elapsedTicks(); |
| 42 | printTime(name, ticks / ITERATIONS); |
| 43 | } |
| 44 | |
| 45 | void evaluateSpeed() |
| 46 | { |
nothing calls this directly
no test coverage detected