Lines Matching defs:end
1633 struct timespec start, end;
1737 (void)clock_gettime(CLOCK_MONOTONIC_RAW, &end);
1738 timout_ms = ((end.tv_sec - start.tv_sec) * 1000 + (end.tv_nsec - start.tv_nsec) / 1000000);
1753 /* capture the end time to calculate round trip time */
1754 (void)clock_gettime(CLOCK_MONOTONIC_RAW, &end);
1755 rtt = ((end.tv_sec - start.tv_sec) * 1000 + (end.tv_nsec - start.tv_nsec) / 1000000);
1986 struct timespec start, end;
2069 /* capture the end time to calculate round trip time */
2070 (void)clock_gettime(CLOCK_MONOTONIC_RAW, &end);
2071 rtt = ((end.tv_sec - start.tv_sec) * 1000 + (end.tv_nsec - start.tv_nsec) / 1000000);
2135 struct timespec start, end, start_in_reply;
2266 (void)clock_gettime(CLOCK_MONOTONIC_RAW, &end);
2271 /* capture the end time to calculate round trip time */
2272 (void)clock_gettime(CLOCK_MONOTONIC_RAW, &end);
2315 rtt = ((end.tv_sec - start.tv_sec) * 1000 + (end.tv_nsec - start.tv_nsec) / 1000000);
2341 deltaTimeVal.tv_sec = (long)(end.tv_sec - start.tv_sec);
2342 deltaTimeVal.tv_usec = (long)((end.tv_nsec - start.tv_nsec) / 1000);