Searched refs:HZ (Results 51 - 75 of 2618) sorted by relevance

1234567891011>>

/linux-master/include/linux/
H A Dacct.h63 * Yet another set of HZ to *HZ helper functions.
70 # if HZ < AHZ
71 return x * (AHZ / HZ);
73 return x / (HZ / AHZ);
H A Ddtlk.h12 #define DTLK_MAX_RETRIES (loops_per_jiffy/(10000/HZ))
/linux-master/drivers/net/ethernet/dec/tulip/
H A Dtimer.c24 int next_tick = 2*HZ;
46 next_tick = 60*HZ;
104 next_tick = (24*HZ)/10;
111 next_tick = 3*HZ;
114 next_tick = 60*HZ;
145 int next_tick = 60*HZ;
161 int next_tick = 2*HZ;
/linux-master/arch/hexagon/kernel/
H A Dsetup.c31 loops_per_jiffy = thread_freq_mhz * 1000000 / HZ;
126 (loops_per_jiffy * HZ) / 500000,
127 ((loops_per_jiffy * HZ) / 5000) % 100);
/linux-master/arch/mips/jazz/
H A Dreset.c41 unsigned long timeout = start + HZ/2;
/linux-master/drivers/net/ethernet/chelsio/cxgb4/
H A Dsrq.h41 #define SRQ_WAIT_TO (HZ * 5)
H A Dcxgb4_tc_mqprio.h20 #define CXGB4_FLOWC_WAIT_TIMEOUT (5 * HZ)
/linux-master/arch/nios2/lib/
H A Ddelay.c24 loops = (u64)xloops * loops_per_jiffy * HZ;
/linux-master/arch/x86/um/
H A Ddelay.c41 (loops_per_jiffy * (HZ/4)));
/linux-master/include/linux/sched/
H A Dloadavg.h20 #define LOAD_FREQ (5*HZ+1) /* 5 sec intervals */
/linux-master/net/bridge/netfilter/
H A Debt_limit.c24 #define MAX_CPJ (0xFFFFFFFF / (HZ*60*60*24))
62 if (user > 0xFFFFFFFF / (HZ*CREDITS_PER_JIFFY))
64 return (user / EBT_LIMIT_SCALE) * HZ * CREDITS_PER_JIFFY;
66 return (user * HZ * CREDITS_PER_JIFFY) / EBT_LIMIT_SCALE;
/linux-master/fs/nfs/
H A Dnfs4renewd.c121 if (timeout < 5 * HZ)
122 timeout = 5 * HZ;
124 __func__, (timeout + HZ - 1) / HZ);
/linux-master/drivers/net/wireless/ath/ath10k/
H A Dthermal.h12 #define ATH10K_THERMAL_SYNC_TIMEOUT_HZ (5 * HZ)
/linux-master/drivers/net/wireless/ath/ath11k/
H A Dahb.h11 #define ATH11K_AHB_RECOVERY_TIMEOUT (3 * HZ)
H A Dthermal.h15 #define ATH11K_THERMAL_SYNC_TIMEOUT_HZ (5 * HZ)
/linux-master/arch/csky/lib/
H A Ddelay.c23 loops = (unsigned long long)xloops * loops_per_jiffy * HZ;
/linux-master/include/uapi/linux/
H A Dpktcdvd.h31 #define PACKET_WAIT_TIME (HZ * 5 / 1000)
H A Dlp.h107 #define LP_TIMEOUT_INTERRUPT (60 * HZ)
108 #define LP_TIMEOUT_POLLED (10 * HZ)
/linux-master/drivers/atm/
H A Didt77105.h88 #define IDT77105_STATS_TIMER_PERIOD (HZ)
90 #define IDT77105_RESTART_TIMER_PERIOD (5 * HZ)
/linux-master/arch/mips/include/asm/
H A Dhpet.h69 #define HPET_COMPARE_VAL ((HPET_FREQ + HZ / 2) / HZ)
/linux-master/drivers/usb/storage/
H A Dinitializers.c41 0x01, 0x0, NULL, 0x0, 5 * HZ);
91 0x01, 0x0, NULL, 0x0, 1 * HZ);
/linux-master/net/x25/
H A Dsysctl_net_x25.c16 static int min_timer[] = { 1 * HZ };
17 static int max_timer[] = { 300 * HZ };
/linux-master/drivers/pps/clients/
H A Dpps-ktimer.c37 mod_timer(&ktimer, jiffies + HZ);
75 mod_timer(&ktimer, jiffies + HZ);
/linux-master/net/dccp/ccids/
H A Dccid3.h41 * Hence we can use a constant t_delta = %USEC_PER_MSEC when HZ >= 500. A coarse
42 * resolution of HZ < 500 means that the error is below one timer tick (t_gran)
43 * when using the constant t_delta = t_gran / 2 = %USEC_PER_SEC / (2 * HZ).
45 #if (HZ >= 500)
48 # define TFRC_T_DELTA (USEC_PER_SEC / (2 * HZ))
/linux-master/kernel/time/
H A Djiffies.c25 * the timer interrupt frequency HZ and it suffers
29 * requested HZ value. It is also not recommended
90 cycles_per_tick = (cycles_per_second + HZ/2)/HZ;

Completed in 199 milliseconds

1234567891011>>