Searched refs:tsum (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/tcsh/
H A Dsh.time.c695 tvadd(timeval_t *tsum, timeval_t *t0) argument
698 tsum->tv_sec += t0->tv_sec;
699 tsum->tv_usec += t0->tv_usec;
700 if (tsum->tv_usec >= 1000000)
701 tsum->tv_sec++, tsum->tv_usec -= 1000000;
/freebsd-13-stable/sbin/ping/
H A Dping.c208 static double tsum = 0.0; /* sum of all times, for doing average */ variable
1202 tsum += triptime;
1436 tmin, tsum / (nreceived + nrepeats), tmax);
1471 double avg = tsum / n;
H A Dping6.c255 static double tsum = 0.0; /* sum of all times, for doing average */ variable
1645 tsum += triptime;
2348 double avg = tsum / num;

Completed in 73 milliseconds