| 39 | } |
| 40 | } |
| 41 | double TimestampDeltaToSeconds(int64_t start, int64_t end, double period) noexcept |
| 42 | { |
| 43 | return double(end - start) * period; |
| 44 | } |
| 45 | |
| 46 | double TimestampDeltaToMilliSeconds(uint64_t duration, uint64_t qpcFrequency) noexcept |
| 47 | { |
no outgoing calls
no test coverage detected