Searched refs:ticks (Results 76 - 100 of 173) sorted by relevance

1234567

/freebsd-9.3-release/sys/net80211/
H A Dieee80211_ht.c851 if (ticks - rap->rxa_age > ieee80211_ampdu_age) {
868 rap->rxa_age = ticks;
1097 if (ticks - rap->rxa_age > ieee80211_ampdu_age) {
1330 ic->ic_lastnonht = ticks;
1357 time_after(ticks, ic->ic_lastnonht + IEEE80211_NONHT_PRESENT_AGE)) {
1725 tap->txa_nextrequest = ticks + ieee80211_addba_timeout;
2058 ticks < tap->txa_nextrequest) {
2114 if (tap->txa_nextrequest <= ticks)
2115 tap->txa_nextrequest = ticks + ieee80211_addba_backoff;
H A Dieee80211_sta.c1223 time_after(ticks, ic->ic_lastdata + vap->iv_bgscanidle));
1244 time_after(ticks, ic->ic_lastscan + vap->iv_bgscanintvl) &&
1245 time_after(ticks, ic->ic_lastdata + vap->iv_bgscanidle));
1363 ic->ic_lastdata = ticks;
/freebsd-9.3-release/sys/netinet/
H A Dtcp_subr.c740 tp->t_rcvtime = ticks;
1593 < (u_int)ticks))) {
1595 V_isn_last_reseed = ticks;
1621 if (ticks != V_isn_last) {
1623 ISN_BYTES_PER_SECOND / hz * (ticks - V_isn_last);
1627 V_isn_last = ticks;
/freebsd-9.3-release/sys/boot/i386/boot0/
H A Dboot0.S162 /* ticks is at a fixed position */
163 .set _TICKS, (PRT_OFF - 0x200 - 2) # Timeout ticks
673 ticks: .word TICKS # Delay label
/freebsd-9.3-release/sys/boot/i386/boot2/
H A Dboot2.c40 #define SECOND 18 /* Circa that many ticks in a second. */
609 keyhit(unsigned ticks) argument
622 if ((uint32_t)(t1 - t0) >= ticks)
/freebsd-9.3-release/sys/dev/sfxge/
H A Dsfxge_port.c58 now = ticks;
452 now = ticks;
H A Dsfxge_rx.c70 /* Maximum time (in ticks) that a connection can be idle before it's LRO
523 now = ticks;
531 c->last_pkt_ticks = ticks;
604 c->last_pkt_ticks = *(volatile int *)&ticks;
734 t = *(volatile int *)&ticks;
/freebsd-9.3-release/sys/i386/xen/
H A Dclock.c331 /* Process elapsed ticks since last call. */
880 /* Return system time offset by ticks */
882 get_system_time(int ticks) argument
884 return processed_system_time + (ticks * NS_PER_TICK);
/freebsd-9.3-release/sys/amd64/acpica/
H A Dacpi_wakeup.c300 PCPU_SET(switchticks, ticks);
/freebsd-9.3-release/sys/dev/hptnr/
H A Dhptnr_os_bsd.c259 return ticks * (1000000 / hz);
/freebsd-9.3-release/sys/dev/hptrr/
H A Dhptrr_os_bsd.c230 return ticks * (1000000 / hz);
/freebsd-9.3-release/sys/dev/netmap/
H A Dif_igb_netmap.h159 txr->watchdog_time = ticks;
/freebsd-9.3-release/sys/sys/
H A Dsoundcard.h1466 #define SEQ_WAIT_TIME(ticks) _TIMER_EVENT(TMR_WAIT_ABS, ticks)
1467 #define SEQ_DELTA_TIME(ticks) _TIMER_EVENT(TMR_WAIT_REL, ticks)
/freebsd-9.3-release/lib/libkvm/
H A Dkvm_proc.c86 static int ticks; variable
396 kp->ki_swtime = (ticks - proc.p_swtick) / hz;
576 if (KREAD(kd, nl[3].n_value, &ticks)) {
577 _kvm_err(kd, kd->program, "can't read ticks");
/freebsd-9.3-release/sys/pci/
H A Dncr.c473 /* Type of the kernel variable `ticks'. XXX should be declared with the var. */
1086 u_short ticks; member in struct:ncb
1390 { &time_second, &ticks, &ncr_cache };
1608 SCR_COPY (sizeof (ticks)),
1790 SCR_COPY (sizeof (ticks)),
1812 SCR_COPY (sizeof (ticks)),
2117 SCR_COPY (sizeof (ticks)),
2360 ** SCR_COPY (sizeof (ticks)),
2387 ** SCR_COPY (sizeof (ticks)),
2942 *p++ =SCR_COPY (sizeof (ticks));
[all...]
H A Dif_rl.c1400 int ticks; local
1424 ticks = hz;
1426 ticks = hz / 10;
1429 ticks = hz;
1432 callout_reset(&sc->rl_stat_callout, ticks, rl_tick, sc);
/freebsd-9.3-release/sys/rpc/
H A Dclnt_dg.c420 starttime = ticks;
600 rtt = ticks - starttime + 1;
646 time_waited = ticks - starttime;
/freebsd-9.3-release/sys/dev/e1000/
H A Dif_lem.c282 #define EM_TICKS_TO_USECS(ticks) ((1024 * (ticks) + 500) / 1000)
868 adapter->watchdog_time = ticks;
1710 adapter->watchdog_time = ticks;
2004 (ticks - adapter->watchdog_time > EM_WATCHDOG))
3034 adapter->watchdog_time = ticks;
4593 int ticks; local
4603 ticks = EM_USECS_TO_TICKS(usecs);
4605 ticks *= 4;
4611 regval = (regval & ~0xffff) | (ticks
[all...]
H A Dif_em.c335 #define EM_TICKS_TO_USECS(ticks) ((1024 * (ticks) + 500) / 1000)
952 txr->watchdog_time = ticks;
1042 txr->watchdog_time = ticks;
2108 txr->watchdog_time = ticks;
3887 txr->watchdog_time = ticks;
3918 if ((!processed) && ((ticks - txr->watchdog_time) > EM_WATCHDOG))
5616 int error, usecs, ticks; local
5626 ticks = EM_USECS_TO_TICKS(usecs);
5628 ticks *
[all...]
/freebsd-9.3-release/contrib/bsnmp/snmpd/
H A Dmain.c1997 timer_start(u_int ticks, void (*func)(void *), void *udata, struct lmodule *mod) argument
2011 evConsTime(ticks / 100, (ticks % 100) * 10000));
2021 if ((tp->id = poll_start_timer(ticks * 10, 0, tfunc, tp)) < 0) {
2037 * is currently ignored and the initial number of ticks is set to the
2038 * repeat number of ticks.
2041 timer_start_repeat(u_int ticks __unused, u_int repeat_ticks,
2057 evConsTime(ticks / 100, (ticks % 100) * 10000));
/freebsd-9.3-release/sys/dev/ath/
H A Dif_ath.c3782 (*(ah)->ah_rxAntCombDiversity)(ah, rs, ticks, hz);
3795 } else if (ticks - sc->sc_ledevent >= sc->sc_ledidle)
4603 longCal = (ticks - sc->sc_lastlongcal >= ath_longcalinterval*hz);
4604 aniCal = (ticks - sc->sc_lastani >= ath_anicalinterval*hz/1000);
4606 shortCal = (ticks - sc->sc_lastshortcal >= ath_shortcalinterval*hz/1000);
4611 sc->sc_lastani = ticks;
4617 sc->sc_lastlongcal = ticks;
4634 sc->sc_lastcalreset = ticks;
4635 sc->sc_lastshortcal = ticks;
4657 sc->sc_lastshortcal = ticks;
[all...]
/freebsd-9.3-release/sys/dev/drm2/i915/
H A Dintel_ringbuffer.c1247 end = ticks + hz * 60;
1249 end = ticks + hz * 3;
1274 } while (!time_after(ticks, end));
/freebsd-9.3-release/sys/vm/
H A Dvm_pageout.c1662 if ((ticks > (lastrun + hz)) || (ticks < lastrun)) {
1664 lastrun = ticks;
/freebsd-9.3-release/contrib/ipfilter/tools/
H A Dipfstat.c1631 static void showfrstates(ifsp, ticks)
1633 u_long ticks;
1665 ifr.ipfr_ttl -= ticks;
1694 ifr.ipfr_ttl -= ticks;
/freebsd-9.3-release/sys/dev/hpt27xx/
H A Dhpt27xx_os_bsd.c298 return ticks * (1000000 / hz);

Completed in 270 milliseconds

1234567