Lines Matching refs:time2
185 struct timeval time1, time2, tv; in time_select() local
230 gettimeofday (&time2, NULL); in time_select()
231 times[count] = (time2.tv_sec - time1.tv_sec) * 1000000; in time_select()
232 times[count] += time2.tv_usec - time1.tv_usec; in time_select()
251 struct timeval time1, time2; in time_poll() local
285 gettimeofday (&time2, NULL); in time_poll()
286 times[count] = (time2.tv_sec - time1.tv_sec) * 1000000; in time_poll()
287 times[count] += time2.tv_usec - time1.tv_usec; in time_poll()
306 struct timeval time1, time2; in time_poll2() local
340 gettimeofday (&time2, NULL); in time_poll2()
341 times[count] = (time2.tv_sec - time1.tv_sec) * 1000000; in time_poll2()
342 times[count] += time2.tv_usec - time1.tv_usec; in time_poll2()