MCPcopy Create free account
hub / github.com/Moddable-OpenSource/moddable / fxTicksToMicroseconds

Function fxTicksToMicroseconds

xs/sources/xsProfile.c:603–614  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

601}
602
603txU8 fxTicksToMicroseconds(txU8 ticks)
604{
605#if mxMacOSX
606 return ticks / 1000;
607#elif mxWindows
608 LARGE_INTEGER frequency;
609 QueryPerformanceFrequency(&frequency);
610 return (1000000ULL * ticks) / frequency.QuadPart;
611#else
612 return ticks;
613#endif
614}
615
616
617

Callers 1

fxPrintProfilerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected