| 58 | |
| 59 | |
| 60 | static inline double loadClockCount (unsigned long cc[2]) |
| 61 | { |
| 62 | LARGE_INTEGER a; |
| 63 | a.LowPart = cc[0]; |
| 64 | a.HighPart = cc[1]; |
| 65 | return double(a.QuadPart); |
| 66 | } |
| 67 | |
| 68 | |
| 69 | double dTimerResolution() |
no outgoing calls
no test coverage detected