| 239 | } |
| 240 | |
| 241 | double |
| 242 | StatisticalTimer::getAverageTime( sTimerID id ) const |
| 243 | { |
| 244 | if( normalize ) |
| 245 | return getMean( id ) / clkFrequency; |
| 246 | else |
| 247 | return getMean( id ); |
| 248 | } |
| 249 | |
| 250 | double |
| 251 | StatisticalTimer::getMinimumTime( sTimerID id ) const |
no outgoing calls
no test coverage detected