Home | History | Annotate | Download | only in vm

Lines Matching full:now

541     struct timespec now;
542 clock_gettime(CLOCK_MONOTONIC, &now);
543 return (u8)now.tv_sec*1000000000LL + now.tv_nsec;
545 struct timeval now;
546 gettimeofday(&now, NULL);
547 return (u8)now.tv_sec*1000000000LL + now.tv_usec * 1000LL;
559 struct timespec now;
560 clock_gettime(CLOCK_THREAD_CPUTIME_ID, &now);
561 return (u8)now.tv_sec*1000000000LL + now.tv_nsec;
578 struct timespec now;
579 clock_gettime(clockId, &now);
580 return (u8)now.tv_sec*1000000000LL + now.tv_nsec;
616 LOGVV("exsl: sleep exceeded (start=%llu max=%d now=%llu)\n",