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

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/ia64/include/asm/
H A Dtimex.h24 * calculation assumes that you will use enough of these so that your tick size <= 1/HZ.
25 * If the calculation shows that your CLOCK_TICK_RATE can not supply exactly 1/HZ ticks,
27 * the CLOCK_TICK_RATE to x*HZ insures that the calculation will find no errors. Hence we
28 * pick a multiple of HZ which gives us a (totally virtual) CLOCK_TICK_RATE of about
31 #define CLOCK_TICK_RATE (HZ * 100000UL)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/include/asm/
H A Ddelay.h9 #include <asm/param.h> /* HZ */
18 * of 2000us. Further limits: HZ<=1000 and bogomips<=3355
40 __const_udelay((n) * ((2199023U*HZ)>>11))) : \
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/sni/
H A Dtime.c14 #define SNI_COUNTER0_DIV ((SNI_CLOCK_TICK_RATE / SNI_COUNTER2_DIV) / HZ)
92 #define SNI_8254_TCSAMP_COUNTER ((SNI_8254_TICK_RATE / HZ) + 255)
119 * for every 1/HZ seconds. We round off the nearest 1 MHz of master
120 * clock (= 1000000 / HZ / 2).
122 /*return (ct1 - ct0 + (500000/HZ/2)) / (500000/HZ) * (500000/HZ);*/
123 return (ct1 - ct0) / (500000/HZ) * (500000/HZ);
169 (int) (r4k_tick / (500000 / HZ)),
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/sgi-ip22/
H A Dip22-time.c59 * for every 1/HZ seconds. We round off the nearest 1 MHz of master
60 * clock (= 1000000 / HZ / 2).
63 return (ct1 - ct0) / (500000/HZ) * (500000/HZ);
109 (int) (r4k_tick / (500000 / HZ)),
110 (int) (r4k_tick % (500000 / HZ)));
112 mips_hpt_frequency = r4k_tick * HZ;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dn_r3964.h17 * Fixed HZ usage on 2.6 kernels
70 #define R3964_TO_QVZ ((550)*HZ/1000)
71 #define R3964_TO_ZVZ ((220)*HZ/1000)
72 #define R3964_TO_NO_BUF ((400)*HZ/1000)
73 #define R3964_NO_TX_ROOM ((100)*HZ/1000)
74 #define R3964_TO_RX_PANIC ((4000)*HZ/1000)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/mti-malta/
H A Dmalta-display.c48 static DEFINE_TIMER(mips_scroll_timer, scroll_display_message, HZ, 0);
56 mod_timer(&mips_scroll_timer, jiffies + HZ);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/rb532/
H A Dtime.c46 return mips_hpt_frequency / HZ;
60 est_freq = 2 * r4k_offset * HZ;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/
H A Dsr.h24 #define SR_TIMEOUT (30 * HZ)
30 #define IOCTL_TIMEOUT 30*HZ
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-footbridge/
H A Ddc21285-timer.c52 timer1_latch = (mem_fclk_21285 + 8 * HZ) / (16 * HZ);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/nfs/
H A Dnfs4renewd.c109 if (timeout < 5 * HZ)
110 timeout = 5 * HZ;
112 __func__, (timeout + HZ - 1) / HZ);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/lib/
H A Ddelay.c29 "r" (cpu_data[raw_smp_processor_id()].loops_per_jiffy * (HZ/4))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/sys-i386/
H A Ddelay.c24 n = (loops_per_jiffy * HZ * usecs) / MILLION;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/sys-x86_64/
H A Ddelay.c25 n = (loops_per_jiffy * HZ * usecs) / MILLION;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/xtensa/include/asm/
H A Ddelay.h41 unsigned long cycles = usecs * (loops_per_jiffy / (1000000UL / HZ));
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/cobalt/
H A Dtime.c31 int i = HZ / 10;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/core/seq/
H A Dseq_lock.c30 int max_count = 5 * HZ;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/init/
H A Dcalibrate.c30 #define DELAY_CALIBRATION_TICKS ((HZ < 100) ? 1 : (HZ/100))
113 * bit takes on average 1.5/HZ seconds. This (like the original) is a little
178 loops_per_jiffy/(500000/HZ),
179 (loops_per_jiffy/(5000/HZ)) % 100, loops_per_jiffy);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/nfsd/
H A Dstats.h15 #define NFSD_USAGE_WRAP (HZ*1000000)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/h8300/include/asm/
H A Dtimer.h13 cnt = TIMER_FREQ / HZ; \
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/blackfin/include/asm/
H A Ddelay.h25 #include <linux/param.h> /* needed for HZ */
31 #define HZSCALE (268435456 / (1000000/HZ))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mn10300/unit-asb2303/include/unit/
H A Dtimex.h43 rate = MN10300_JCCLK / HZ;
47 rate = MN10300_JCCLK / 8 / HZ;
51 rate = MN10300_JCCLK / 32 / HZ;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mn10300/unit-asb2305/include/unit/
H A Dtimex.h43 rate = MN10300_JCCLK / HZ;
47 rate = MN10300_JCCLK / 8 / HZ;
51 rate = MN10300_JCCLK / 32 / HZ;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/sunrpc/
H A Dtimer.c24 #define RPC_RTO_MAX (60*HZ)
25 #define RPC_RTO_INIT (HZ/5)
26 #define RPC_RTO_MIN (HZ/10)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-ks8695/
H A Dtime.c58 elapsed = (CLOCK_TICK_RATE / HZ) - elapsed;
62 elapsed += (CLOCK_TICK_RATE / HZ);
85 unsigned long tmout = CLOCK_TICK_RATE / HZ;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-lh7a40x/
H A Dtime.c25 #if HZ < 100
28 # define TIMER_CONSTANT (508469/HZ)
35 # define TIMER_CONSTANT (3686400/HZ)

Completed in 197 milliseconds

1234567891011>>