Home | History | Annotate | Download | only in lib

Lines Matching defs:tmstart

2757     static ULARGE_INTEGER tmstart;
2791 tmstart.u.LowPart = now.dwLowDateTime;
2792 tmstart
2799 ret = (__int64)(tmstop.QuadPart - tmstart.QuadPart) * 1e-7;
2811 static struct timespec tmstart;
2814 static unsigned long tmstart;
2827 tmstart = now;
2830 - (tmstart.tv_sec + tmstart.tv_nsec * 1e-9));
2834 tmstart = now;
2836 ret = (now - tmstart) / (double)sysClkRateGet();
2849 static clock_t tmstart;
2855 tmstart = now;
2859 ret = (now - tmstart) / (double)tck;
2874 static struct timeval tmstart;
2882 tmstart = now;
2885 - (tmstart.tv_sec + tmstart.tv_usec * 1e-6));