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

/illumos-gate/usr/src/cmd/csh/
H A Dsh.time.c24 void tvadd(struct timeval *tsum, struct timeval *t0);
235 tvadd(struct timeval *tsum, struct timeval *t0) argument
241 tsum->tv_sec += t0->tv_sec;
242 tsum->tv_usec += t0->tv_usec;
243 if (tsum->tv_usec > 1000000) {
244 tsum->tv_sec++;
245 tsum->tv_usec -= 1000000;
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ping/
H A Dping.c211 int64_t tsum; /* sum of all times, for doing average */ variable
2448 double mean = (double)tsum / nreceived;
/illumos-gate/usr/src/uts/common/os/
H A Dstrsubr.c8582 unsigned int tsum; local
8591 tsum = ip_ocsum((ushort_t *)bp, len >> 1, 0);
8592 psum += (tsum << 8) & 0xffff | (tsum >> 8);

Completed in 80 milliseconds