Lines Matching defs:tsa
90 struct timespec tsa, tsb, tsl, res;
102 CL(clock_gettime(CLOCK_REALTIME, &tsa));
103 tsl = tsa;
108 while ((time_t)tsa.tv_sec < endlimit) {
112 diff = 1000000000LL * (tsb.tv_sec - tsa.tv_sec)
113 + tsb.tv_nsec - tsa.tv_nsec;
121 " TSA: 0x%jx.%08jx, TSB: 0x%jx.%08jx, "
123 (uintmax_t)tsa.tv_sec, (uintmax_t)tsa.tv_nsec,
139 tsa.tv_sec = tsb.tv_sec;
140 tsa.tv_nsec = tsb.tv_nsec;