Lines Matching full:last
313 THREAD_LOCAL struct timeval last = {0, 0};
358 last.tv_sec = tv1;
359 last.tv_usec = tv2;
364 if ((last.tv_sec == 0) && (last.tv_usec == 0)) {
367 gettimeofday(&last, 0);
368 last.tv_sec--;
373 if ((tv.tv_sec < last.tv_sec) ||
374 ((tv.tv_sec == last.tv_sec) &&
375 (tv.tv_usec < last.tv_usec))) {
378 last = tv;
379 } else if ((tv.tv_sec == last.tv_sec) &&
380 (tv.tv_usec == last.tv_usec)) {
386 last = tv;
395 last.tv_usec += adjustment / 10;
397 last.tv_sec += last.tv_usec / 1000000;
398 last.tv_usec = last.tv_usec % 1000000;
405 clock_seq, last.tv_sec, (long)last.tv_usec,