Searched refs:hz (Results 1 - 25 of 52) sorted by relevance

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/amiga/
H A Damisound.c69 void amiga_mksound( unsigned int hz, unsigned int ticks ) argument
79 if (hz > 20 && hz < 32767) {
80 unsigned long period = (clock_constant / hz);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/ppc/
H A Dbeep.c37 int hz; member in struct:pmac_beep
101 unsigned int code, int hz)
116 case SND_BELL: if (hz) hz = 1000;
125 if (! hz) {
136 if (hz <= srate / BEEP_BUFLEN || hz > srate / 2)
137 hz = 1000;
147 if (hz == beep->hz
100 snd_pmac_beep_event(struct input_dev *dev, unsigned int type, unsigned int code, int hz) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/os-Linux/
H A Dtime.c22 int usec = 1000000/hz();
55 struct itimerval enable = ((struct itimerval) { { 0, 1000000/hz() },
56 { 0, 1000000/hz() }});
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/atari/
H A Datasound.c53 void atari_mksound (unsigned int hz, unsigned int ticks) argument
70 if (hz) {
74 period = PSG_FREQ / hz;
78 /* Set generator A frequency to hz. */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dclocksource.h128 * clocksource_hz2mult - calculates mult from hz and shift
129 * @hz: Clocksource frequency in Hz
132 * Helper functions that converts a hz counter
136 static inline u32 clocksource_hz2mult(u32 hz, u32 shift_constant) argument
138 /* hz = cyc/(Billion ns)
141 * mult = 1Billion/hz * 2^shift
142 * mult = 1000000000 * 2^shift / hz
143 * mult = (1000000000<<shift) / hz
147 tmp += hz/2; /* round for do_div */
148 do_div(tmp, hz);
[all...]
H A Dvt_kern.h28 extern void kd_mksound(unsigned int hz, unsigned int ticks);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-i386/
H A Dnmi.h56 unsigned lapic_adjust_nmi_hz(unsigned hz);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/brcm-boards/bcm947xx/
H A Dtime.c262 unsigned int hz; local
272 if (!(hz = si_cpu_clock(sih)))
273 hz = 100000000;
277 (hz + 500000) / 1000000);
280 mips_hpt_frequency = hz / 2;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/mmc/core/
H A Dcore.h51 void mmc_set_clock(struct mmc_host *host, unsigned int hz);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-x86_64/
H A Dnmi.h87 unsigned lapic_adjust_nmi_hz(unsigned hz);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/spi/
H A Domap_uwire.c317 unsigned hz; local
369 hz = spi->max_speed_hz;
371 hz = t->speed_hz;
373 if (!hz) {
396 div2 = (rate / div1 + hz - 1) / hz;
402 spi->dev.bus_id, rate / 10 / 8, hz);
H A Dspi_bitbang.c144 u32 hz; local
148 hz = t->speed_hz;
151 hz = 0;
167 if (!hz)
168 hz = spi->max_speed_hz;
169 if (hz) {
170 cs->nsecs = (1000000000/2) / hz;
H A Dspi_mpc83xx.c179 u32 hz; local
185 hz = t->speed_hz;
188 hz = 0;
213 if (!hz)
214 hz = spi->max_speed_hz;
215 mpc83xx_spi->nsecs = (1000000000 / 2) / hz;
H A Dspi_s3c24xx.c112 unsigned int hz; local
116 hz = t ? t->speed_hz : spi->max_speed_hz;
123 div = clk_get_rate(hw->clk) / hz;
136 dev_dbg(&spi->dev, "setting pre-scaler to %d (hz %d)\n", div, hz);
165 dev_dbg(&spi->dev, "%s: mode %d, %u bpw, %d hz\n",
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/ip/
H A Dipneigh.c276 static int hz; local
278 if (!hz)
279 hz = get_hz();
282 fprintf(fp, " used %d/%d/%d", ci->ndm_used/hz,
283 ci->ndm_confirmed/hz, ci->ndm_updated/hz);
H A Diproute.c430 static int hz; local
431 if (!hz)
432 hz = get_user_hz();
434 fprintf(fp, " expires %dsec", ci->rta_expires/hz);
443 fprintf(fp, " age %dsec", ci->rta_lastuse/hz);
457 static int hz; local
458 if (!hz)
459 hz = get_user_hz();
463 fprintf(fp, " expires %dsec", ci->rta_expires/hz);
472 fprintf(fp, " age %dsec", ci->rta_lastuse/hz);
501 static int hz; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/i386/kernel/cpu/
H A Dperfctr-watchdog.c206 static unsigned int adjust_for_32bit_ctr(unsigned int hz) argument
209 unsigned int retval = hz;
671 unsigned lapic_adjust_nmi_hz(unsigned hz) argument
676 hz = adjust_for_32bit_ctr(hz);
677 return hz;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/q40/
H A Dq40ints.c109 void q40_mksound(unsigned int hz, unsigned int ticks) argument
111 /* for now ignore hz, except that hz==0 switches off sound */
113 if (hz == 0) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/wireless/zd1211rw/
H A Dzd_ieee80211.c75 static int compute_freq(struct iw_freq *freq, u32 mhz, u32 hz) argument
94 freq->m = mhz * (1000000U/factor) + hz/factor;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/kernel/
H A Dtime.c337 cycle_t frequency, hpt_start, hpt_end, hpt_count, hz; local
371 hz = HZ;
372 frequency = hpt_count * hz;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/tc/
H A Dtc_util.c424 int hz = get_user_hz(); local
426 fprintf(f, " installed %u sec", (unsigned)(tm->install/hz));
428 fprintf(f, " used %u sec", (unsigned)(tm->lastuse/hz));
430 fprintf(f, " expires %u sec", (unsigned)(tm->expires/hz));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/include/
H A Dkern_util.h71 extern int hz(void);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/kernel/
H A Dtime.c24 int hz(void) function
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/bzip2/
H A Dblocksort.c80 #define fpush(lz,hz) { stackLo[sp] = lz; \
81 stackHi[sp] = hz; \
84 #define fpop(lz,hz) { sp--; \
86 hz = stackHi[sp]; }
596 #define mpush(lz,hz,dz) { stackLo[sp] = lz; \
597 stackHi[sp] = hz; \
601 #define mpop(lz,hz,dz) { sp--; \
603 hz = stackHi[sp]; \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/drm/
H A Dvia_verifier.c114 hazard_t hz; member in struct:__anon4263
341 investigate_hazard(uint32_t cmd, hazard_t hz, drm_via_state_t * cur_seq) argument
345 if (cur_seq->unfinished && (cur_seq->unfinished != seqs[hz])) {
351 switch (hz) {
623 hazard_t hz; local
690 if ((hz = hz_table[cmd >> 24])) {
691 if ((hz_mode = investigate_hazard(cmd, hz, hc_state))) {
1098 table[init_table[i].code] = init_table[i].hz;

Completed in 151 milliseconds

123