Searched refs:end_at (Results 1 – 3 of 3) sorted by relevance
121 timespec end_at; in Wait() local124 clock_gettime(CLOCK_REALTIME, &end_at); in Wait()126 clock_gettime(CLOCK_MONOTONIC, &end_at); in Wait()134 TIMEVAL_TO_TIMESPEC(&value, &end_at); in Wait()136 end_at.tv_sec += timeout / 1000; in Wait()137 end_at.tv_nsec += (timeout - (timeout / 1000) * 1000) * E6; in Wait()139 if (end_at.tv_nsec >= E9) { in Wait()140 end_at.tv_sec++; in Wait()141 end_at.tv_nsec -= E9; in Wait()143 ret_val = pthread_cond_timedwait(&cond_, &mutex_, &end_at); in Wait()[all …]
23 EnumType end_at) { in ToEnumObject() argument25 for (int i = start_after + 1; i <= end_at; ++i) { in ToEnumObject()
943 int32_t end_at; /* end at this one */ member