Home | History | Annotate | Download | only in uuid

Lines Matching defs:last

309 	THREAD_LOCAL struct timeval	last = {0, 0};
354 last.tv_sec = tv1;
355 last.tv_usec = tv2;
360 if ((last.tv_sec == 0) && (last.tv_usec == 0)) {
363 gettimeofday(&last, 0);
364 last.tv_sec--;
369 if ((tv.tv_sec < last.tv_sec) ||
370 ((tv.tv_sec == last.tv_sec) &&
371 (tv.tv_usec < last.tv_usec))) {
374 last = tv;
375 } else if ((tv.tv_sec == last.tv_sec) &&
376 (tv.tv_usec == last.tv_usec)) {
382 last = tv;
391 last.tv_usec += adjustment / 10;
393 last.tv_sec += last.tv_usec / 1000000;
394 last.tv_usec = last.tv_usec % 1000000;
401 clock_seq, last.tv_sec, last.tv_usec, adjustment);