Lines Matching defs:now
699 struct timespec now;
708 TIMEVAL_TO_TIMESPEC(&tval, &now);
710 now.tv_sec += interval.tv_sec;
711 now.tv_nsec += interval.tv_nsec;
713 if (now.tv_nsec >= KMP_NSEC_PER_SEC) {
714 now.tv_sec += 1;
715 now.tv_nsec -= KMP_NSEC_PER_SEC;
723 &__kmp_wait_mx.m_mutex, &now);
751 /* now we need to terminate the worker threads */
828 /* Set stack size for this thread now.
981 /* Set stack size for this thread now. */
1557 struct timespec now;
1563 TIMEVAL_TO_TIMESPEC(&tval, &now);
1566 now.tv_sec += msecs / 1000;
1567 now.tv_nsec += (msecs % 1000) * 1000;
1573 &th->th.th_suspend_mx.m_mutex, &now);
1691 // coming from __kmp_null_resume_wrapper, or thread is now sleeping on a
2089 kmp_uint64 now, nsec2, diff;
2093 while ((now = __kmp_hardware_timestamp()) < goal)
2098 double tpus = 1000.0 * (double)(delay + (now - goal)) / (double)diff;
2579 // error now and in subsequent calls.
2621 // kernel. Report an error now and in the future.