Searched refs:pst2 (Results 1 - 1 of 1) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/wget-1.12/src/
H A Dptimer.c177 posix_diff (ptimer_system_time *pst1, ptimer_system_time *pst2) argument
179 return ((pst1->tv_sec - pst2->tv_sec)
180 + (pst1->tv_nsec - pst2->tv_nsec) / 1e9);
210 gettimeofday_diff (ptimer_system_time *pst1, ptimer_system_time *pst2) argument
212 return ((pst1->tv_sec - pst2->tv_sec)
213 + (pst1->tv_usec - pst2->tv_usec) / 1e6);
281 windows_diff (ptimer_system_time *pst1, ptimer_system_time *pst2) argument
284 return (pst1->hires.QuadPart - pst2->hires.QuadPart) / windows_hires_freq;
286 return pst1->lores - pst2->lores;

Completed in 66 milliseconds