Home | History | Annotate | Download | only in uuid

Lines Matching full:last

266 	THREAD_LOCAL struct timeval	last = {0, 0};
310 last.tv_sec = tv1;
311 last.tv_usec = tv2;
316 if ((last.tv_sec == 0) && (last.tv_usec == 0)) {
319 last = tv;
320 last.tv_sec--;
325 if ((tv.tv_sec < last.tv_sec) ||
326 ((tv.tv_sec == last.tv_sec) &&
327 (tv.tv_usec < last.tv_usec))) {
330 last = tv;
331 } else if ((tv.tv_sec == last.tv_sec) &&
332 (tv.tv_usec == last.tv_usec)) {
338 last = tv;
347 last.tv_usec += adjustment / 10;
349 last.tv_sec += last.tv_usec / 1000000;
350 last.tv_usec = last.tv_usec % 1000000;
357 clock_seq, last.tv_sec, last.tv_usec, adjustment);