Lines Matching defs:abs
160 _PyThread_cond_after(long long us, struct timespec *abs)
164 clock_gettime(CLOCK_MONOTONIC, abs);
165 abs->tv_sec += us / 1000000;
166 abs->tv_nsec += (us % 1000000) * 1000;
167 abs->tv_sec += abs->tv_nsec / 1000000000;
168 abs->tv_nsec %= 1000000000;
175 *abs = ts;
654 struct timespec abs;
656 _PyThread_cond_after(microseconds, &abs);
666 &thelock->mut, &abs);