Searched refs:nticks (Results 1 - 8 of 8) sorted by relevance

/netbsd-6-1-5-RELEASE/sys/arch/powerpc/booke/
H A De500_timer.c94 u_int nticks; local
119 nticks = 1 + latency / cpu->cpu_ticks_per_clock_intr;
122 for (nticks = 1; latency >= cpu->cpu_ticks_per_clock_intr; nticks++) {
128 cpu->cpu_ev_late_clock.ev_count += nticks - 1;
135 if (nticks > 10 || now - ci->ci_lastintr < 7 * cpu->cpu_ticks_per_clock_intr / 8)
136 printf("%s: nticks=%u lastintr=%#"PRIx64"(%#"PRIx64") now=%#"PRIx64" latency=%#"PRIx64" orig=%#"PRIx64"\n", __func__,
137 nticks, ci->ci_lastintr, now - latency, now, latency, orig_latency);
147 while (nticks-- > 0) {
/netbsd-6-1-5-RELEASE/sys/arch/powerpc/ibm4xx/
H A Dclock.c118 int nticks; local
130 for (nticks = 0; xticks > ticks_per_intr; nticks++)
144 tickspending += nticks;
145 ticksmissed += nticks;
147 nticks += tickspending;
160 while (--nticks > 0)
/netbsd-6-1-5-RELEASE/sys/arch/powerpc/powerpc/
H A Dclock.c126 int nticks; local
137 for (nticks = 0; ticks < 0; nticks++)
146 ci->ci_tickspending += nticks;
148 nticks += ci->ci_tickspending;
175 while (--nticks > 0)
/netbsd-6-1-5-RELEASE/sys/netinet/
H A Dtcp_timer.h155 * nticks is given in units of slow timeouts,
158 #define TCP_TIMER_ARM(tp, timer, nticks) \
160 (nticks) * (hz / PR_SLOWHZ))
H A Dtcp_output.c1693 int nticks; local
1702 TCPT_RANGESET(nticks, t * tcp_backoff[tp->t_rxtshift],
1704 TCP_TIMER_ARM(tp, TCPT_PERSIST, nticks);
/netbsd-6-1-5-RELEASE/sys/sys/
H A Dprotosw.h242 #define PRT_SLOW_ARM(t, nticks) (t) = (pfslowtimo_now + (nticks))
243 #define PRT_FAST_ARM(t, nticks) (t) = (pffasttimo_now + (nticks))
/netbsd-6-1-5-RELEASE/sys/arch/usermode/dev/
H A Dclock.c119 int nticks = thunk_timer_getoverrun(clock_timerid) + 1; local
121 while (nticks-- > 0) {
/netbsd-6-1-5-RELEASE/sys/arch/shark/isa/
H A Dclock.c423 int nticks; local
447 nticks
454 while (nticks > 0) {
457 nticks -= TIMER0_ROLLOVER - (ticks - otick);
459 nticks -= otick - ticks;

Completed in 219 milliseconds