HomeSort by: relevance | last modified time | path
    Searched defs:lasttv (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/arch/arm/at91/
at91st.c 89 static struct timeval lasttv; variable in typeref:struct:timeval
319 if (__predict_false(tvp->tv_sec == lasttv.tv_sec && tvp->tv_usec <= lasttv.tv_usec))
321 tvp->tv_usec = lasttv.tv_usec + 1;
329 lasttv = *tvp;
  /src/external/bsd/ntp/dist/clockstuff/
chutest.c 73 struct timeval lasttv; variable in typeref:struct:timeval
151 (void) gettimeofday(&lasttv, (struct timezone *)0);
255 difftv.tv_sec = tv.tv_sec - lasttv.tv_sec;
256 difftv.tv_usec = tv.tv_usec - lasttv.tv_usec;
264 lasttv = tv;

Completed in 25 milliseconds