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

/macosx-10.10.1/tcsh-65/tcsh/
H A Dsh.time.c694 tvadd(timeval_t *tsum, timeval_t *t0) argument
697 tsum->tv_sec += t0->tv_sec;
698 tsum->tv_usec += t0->tv_usec;
699 if (tsum->tv_usec >= 1000000)
700 tsum->tv_sec++, tsum->tv_usec -= 1000000;
/macosx-10.10.1/xnu-2782.1.97/osfmk/kern/
H A Dtask.c3347 uint64_t tsum; local
3369 tsum = timer_grab(&thread->user_timer);
3370 tsum += timer_grab(&thread->system_timer);
3371 tdelt = (uint32_t)(tsum - thread->vtimer_prof_save);
3375 thread->vtimer_prof_save = tsum;
3379 tsum = timer_grab(&thread->user_timer);
3380 tsum += timer_grab(&thread->system_timer);
3381 tdelt = (uint32_t)(tsum - thread->vtimer_rlim_save);
3382 thread->vtimer_rlim_save = tsum;
/macosx-10.10.1/xnu-2782.1.97/bsd/net/
H A Dpacket_mangler.c1003 u_int16_t tsum; local
1021 ntohs(ip->ip_len) - (ip->ip_hl << 2), &tsum);
1022 tcp->th_sum = tsum;
/macosx-10.10.1/network_cmds-457/ping.tproj/
H A Dping.c226 double tsum = 0.0; /* sum of all times, for doing average */ variable
1224 tsum += triptime;
1520 tmin, tsum / (nreceived + nrepeats), tmax);
1555 double avg = tsum / n;
/macosx-10.10.1/network_cmds-457/ping6.tproj/
H A Dping6.c272 double tsum = 0.0; /* sum of all times, for doing average */ variable
1731 tsum += triptime;
2516 double avg = tsum / num;

Completed in 88 milliseconds