Home | History | Annotate | Download | only in dist

Lines Matching refs:sNow

11996     struct tm sNow;
11997 gmtime_r(&t, &sNow);
11998 strftime(zBuf, 20, zFormat, &sNow);
25827 struct timespec sNow;
25828 clock_gettime(CLOCK_REALTIME, &sNow);
25829 *prNow = 2440587.5 + sNow.tv_sec/86400.0 + sNow.tv_nsec/86400000000000.0;
25831 struct timeval sNow;
25832 gettimeofday(&sNow, 0);
25833 *prNow = 2440587.5 + sNow.tv_sec/86400.0 + sNow.tv_usec/86400000000.0;