Lines Matching defs:tmstart
2691 static ULARGE_INTEGER tmstart;
2722 tmstart.u.LowPart = now.dwLowDateTime;
2723 tmstart.u.HighPart = now.dwHighDateTime;
2730 ret = (__int64)(tmstop.QuadPart - tmstart.QuadPart) * 1e-7;
2742 static struct timespec tmstart;
2745 static unsigned long tmstart;
2758 tmstart = now;
2761 - (tmstart.tv_sec + tmstart.tv_nsec * 1e-9));
2765 tmstart = now;
2767 ret = (now - tmstart) / (double)sysClkRateGet();
2780 static clock_t tmstart;
2786 tmstart = now;
2789 ret = (now - tmstart) / (double)tck;
2804 static struct timeval tmstart;
2812 tmstart = now;
2815 - (tmstart.tv_sec + tmstart.tv_usec * 1e-6));