Searched refs:tick (Results 1 - 9 of 9) sorted by relevance

/darwin-on-arm/xnu/bsd/sys/
H A Dkernel.h98 extern int tick; /* usec per tick (1000000 / hz) */
H A Dtime.h203 int tick; /* micro-seconds per hz tick */ member in struct:clockinfo
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_clock.c118 int tick = (1000000 / 100); /* GET RID OF THIS !!! */ variable
215 / (tick / 1000);
237 clkinfo.tick = tick;
261 * ticks, rounding up and adding 1 to allow for the current tick
294 ticks = (sec * 1000000 + (unsigned long)usec + (tick - 1))
295 / tick + 1;
298 + ((unsigned long)usec + (tick - 1)) / tick + 1;
351 (tick / 100
[all...]
H A Dkern_acct.c262 t = tmp.tv_sec * hz + tmp.tv_usec / tick;
H A Dsocket_info.c63 sbi->sbi_timeo = (u_int32_t)(sb->sb_timeo.tv_sec * hz) + sb->sb_timeo.tv_usec / tick;
H A Duipc_socket2.c1962 (sb->sb_timeo.tv_sec * hz) + sb->sb_timeo.tv_usec / tick;
/darwin-on-arm/xnu/bsd/net/
H A Dbpf.c577 tv.tv_usec = (d->bd_rtout % hz) * tick;
1398 * Subtract 1 tick from tvtohz() since this isn't
1415 * Subtract 1 tick from tvtohz() since this isn't
1431 tv.tv_usec = (d->bd_rtout % hz) * tick;
1441 tv.tv_usec = (d->bd_rtout % hz) * tick;
/darwin-on-arm/xnu/bsd/netinet/
H A Din_pcblist.c147 (sb->sb_timeo.tv_sec * hz) + sb->sb_timeo.tv_usec / tick;
/darwin-on-arm/xnu/bsd/net/pktsched/
H A Dpktsched_rmclass.c1608 * clock, 1 tick (the next clock tick) can be an arbitrarily
1613 if (ndelay > tick * 2) {
1615 * FreeBSD rounds up the tick;
1616 * other BSDs round down the tick.

Completed in 95 milliseconds