/linux-4.1.27/sound/pci/hda/ |
D | hda_beep.c | 73 static int beep_linear_tone(struct hda_beep *beep, int hz) in beep_linear_tone() argument 75 if (hz <= 0) in beep_linear_tone() 77 hz *= 1000; /* fixed point */ in beep_linear_tone() 78 hz = hz - DIGBEEP_HZ_MIN in beep_linear_tone() 80 if (hz < 0) in beep_linear_tone() 81 hz = 0; /* turn off PC beep*/ in beep_linear_tone() 82 else if (hz >= (DIGBEEP_HZ_MAX - DIGBEEP_HZ_MIN)) in beep_linear_tone() 83 hz = 1; /* max frequency */ in beep_linear_tone() 85 hz /= DIGBEEP_HZ_STEP; in beep_linear_tone() 86 hz = 255 - hz; in beep_linear_tone() [all …]
|
D | hda_codec.c | 3319 unsigned int hz; member 3376 for (i = 0; rate_bits[i].hz; i++) in snd_hda_calc_stream_format() 3377 if (rate_bits[i].hz == rate) { in snd_hda_calc_stream_format() 3381 if (!rate_bits[i].hz) { in snd_hda_calc_stream_format()
|
/linux-4.1.27/kernel/time/ |
D | timeconst.bc | 41 define timeconst(hz) { 43 print "/* Time conversion constants for HZ == ", hz, " */\n" 52 print "#if HZ != ", hz, "\n" 56 if (hz < 2) { 59 s=fmuls(32,1000,hz) 61 print "#define HZ_TO_MSEC_MUL32\tU64_C(0x", fmul(s,1000,hz), ")\n" 62 print "#define HZ_TO_MSEC_ADJ32\tU64_C(0x", fadj(s,1000,hz), ")\n" 66 s=fmuls(32,hz,1000) 68 print "#define MSEC_TO_HZ_MUL32\tU64_C(0x", fmul(s,hz,1000), ")\n" 69 print "#define MSEC_TO_HZ_ADJ32\tU64_C(0x", fadj(s,hz,1000), ")\n" [all …]
|
D | Makefile | 21 targets += hz.bc 22 $(obj)/hz.bc: $(objtree)/include/config/hz.h FORCE 29 $(obj)/timeconst.h: $(obj)/hz.bc $(src)/timeconst.bc FORCE
|
/linux-4.1.27/arch/mips/bcm47xx/ |
D | time.c | 33 unsigned long hz = 0; in plat_time_init() local 49 hz = ssb_cpu_clock(&bcm47xx_bus.ssb.mipscore) / 2; in plat_time_init() 55 hz = bcma_cpu_clock(&bcm47xx_bus.bcma.bus.drv_mips) / 2; in plat_time_init() 64 hz = 100000000; in plat_time_init() 70 hz = 100000000; in plat_time_init() 76 if (!hz) in plat_time_init() 77 hz = 100000000; in plat_time_init() 80 mips_hpt_frequency = hz; in plat_time_init()
|
/linux-4.1.27/sound/ppc/ |
D | beep.c | 36 int hz; member 100 unsigned int code, int hz) in snd_pmac_beep_event() argument 115 case SND_BELL: if (hz) hz = 1000; in snd_pmac_beep_event() 124 if (! hz) { in snd_pmac_beep_event() 135 if (hz <= srate / BEEP_BUFLEN || hz > srate / 2) in snd_pmac_beep_event() 136 hz = 1000; in snd_pmac_beep_event() 146 if (hz == beep->hz && beep->volume == beep->volume_play) { in snd_pmac_beep_event() 149 period = srate * 256 / hz; /* fixed point */ in snd_pmac_beep_event() 159 beep->hz = hz; in snd_pmac_beep_event()
|
/linux-4.1.27/include/linux/ |
D | clocksource.h | 149 static inline u32 clocksource_hz2mult(u32 hz, u32 shift_constant) in clocksource_hz2mult() argument 160 tmp += hz/2; /* round for do_div */ in clocksource_hz2mult() 161 do_div(tmp, hz); in clocksource_hz2mult() 214 static inline int clocksource_register_hz(struct clocksource *cs, u32 hz) in clocksource_register_hz() argument 216 return __clocksource_register_scale(cs, 1, hz); in clocksource_register_hz() 224 static inline void __clocksource_update_freq_hz(struct clocksource *cs, u32 hz) in __clocksource_update_freq_hz() argument 226 __clocksource_update_freq_scale(cs, 1, hz); in __clocksource_update_freq_hz()
|
D | vt_kern.h | 30 extern void kd_mksound(unsigned int hz, unsigned int ticks);
|
/linux-4.1.27/arch/m68k/amiga/ |
D | amisound.c | 71 void amiga_mksound( unsigned int hz, unsigned int ticks ) in amiga_mksound() argument 81 if (hz > 20 && hz < 32767) { in amiga_mksound() 82 unsigned long period = (clock_constant / hz); in amiga_mksound()
|
/linux-4.1.27/arch/x86/realmode/rm/ |
D | wakemain.c | 10 static void beep(unsigned int hz) in beep() argument 14 if (!hz) { in beep() 17 u16 div = 1193181/hz; in beep()
|
/linux-4.1.27/drivers/spi/ |
D | spi-s3c24xx.c | 42 unsigned int hz; member 124 unsigned int hz; in s3c24xx_spi_update_state() local 128 hz = t ? t->speed_hz : spi->max_speed_hz; in s3c24xx_spi_update_state() 130 if (!hz) in s3c24xx_spi_update_state() 131 hz = spi->max_speed_hz; in s3c24xx_spi_update_state() 146 if (cs->hz != hz) { in s3c24xx_spi_update_state() 148 div = DIV_ROUND_UP(clk, hz * 2) - 1; in s3c24xx_spi_update_state() 154 div, hz, clk / (2 * (div + 1))); in s3c24xx_spi_update_state() 156 cs->hz = hz; in s3c24xx_spi_update_state() 192 cs->hz = -1; in s3c24xx_spi_setup()
|
D | spi-bitbang.c | 141 u32 hz; in spi_bitbang_setup_transfer() local 145 hz = t->speed_hz; in spi_bitbang_setup_transfer() 148 hz = 0; in spi_bitbang_setup_transfer() 164 if (!hz) in spi_bitbang_setup_transfer() 165 hz = spi->max_speed_hz; in spi_bitbang_setup_transfer() 166 if (hz) { in spi_bitbang_setup_transfer() 167 cs->nsecs = (1000000000/2) / hz; in spi_bitbang_setup_transfer()
|
D | spi-omap-uwire.c | 314 unsigned hz; in uwire_setup_transfer() local 347 hz = spi->max_speed_hz; in uwire_setup_transfer() 349 hz = t->speed_hz; in uwire_setup_transfer() 351 if (!hz) { in uwire_setup_transfer() 374 div2 = (rate / div1 + hz - 1) / hz; in uwire_setup_transfer() 380 dev_name(&spi->dev), rate / 10 / 8, hz); in uwire_setup_transfer()
|
D | spi-sc18is602.c | 135 static int sc18is602_setup_transfer(struct sc18is602 *hw, u32 hz, u8 mode) in sc18is602_setup_transfer() argument 148 if (hz >= hw->freq / 4) { in sc18is602_setup_transfer() 151 } else if (hz >= hw->freq / 16) { in sc18is602_setup_transfer() 154 } else if (hz >= hw->freq / 64) { in sc18is602_setup_transfer()
|
D | spi-st-ssc4.c | 216 u32 hz = spi->max_speed_hz; in spi_st_setup() local 220 if (!hz) { in spi_st_setup() 242 sscbrg = spi_st_clk / (2 * hz); in spi_st_setup() 245 "baudrate %d outside valid range %d\n", sscbrg, hz); in spi_st_setup() 257 hz, spi_st->baud, sscbrg); in spi_st_setup()
|
D | spi-mxs.c | 77 const unsigned int hz = min(dev->max_speed_hz, t->speed_hz); in mxs_spi_setup_transfer() local 79 if (hz == 0) { in mxs_spi_setup_transfer() 84 if (hz != spi->sck) { in mxs_spi_setup_transfer() 85 mxs_ssp_set_clk_rate(ssp, hz); in mxs_spi_setup_transfer() 91 spi->sck = hz; in mxs_spi_setup_transfer()
|
D | spi-fsl-spi.c | 228 u32 hz = 0; in fsl_spi_setup_transfer() local 235 hz = t->speed_hz; in fsl_spi_setup_transfer() 242 if (!hz) in fsl_spi_setup_transfer() 243 hz = spi->max_speed_hz; in fsl_spi_setup_transfer() 267 if ((mpc8xxx_spi->spibrg / hz) > 64) { in fsl_spi_setup_transfer() 269 pm = (mpc8xxx_spi->spibrg - 1) / (hz * 64) + 1; in fsl_spi_setup_transfer() 273 hz, mpc8xxx_spi->spibrg / 1024); in fsl_spi_setup_transfer() 277 pm = (mpc8xxx_spi->spibrg - 1) / (hz * 4) + 1; in fsl_spi_setup_transfer()
|
D | spi-fsl-espi.c | 137 u32 hz = 0; in fsl_espi_setup_transfer() local 142 hz = t->speed_hz; in fsl_espi_setup_transfer() 149 if (!hz) in fsl_espi_setup_transfer() 150 hz = spi->max_speed_hz; in fsl_espi_setup_transfer() 176 if ((mpc8xxx_spi->spibrg / hz) > 64) { in fsl_espi_setup_transfer() 178 pm = DIV_ROUND_UP(mpc8xxx_spi->spibrg, hz * 16 * 4); in fsl_espi_setup_transfer() 182 hz, mpc8xxx_spi->spibrg / (4 * 16 * (32 + 1))); in fsl_espi_setup_transfer() 186 pm = DIV_ROUND_UP(mpc8xxx_spi->spibrg, hz * 4); in fsl_espi_setup_transfer()
|
D | spi-bcm63xx-hsspi.c | 125 struct spi_device *spi, int hz) in bcm63xx_hsspi_set_clk() argument 130 reg = DIV_ROUND_UP(2048, DIV_ROUND_UP(bs->speed_hz, hz)); in bcm63xx_hsspi_set_clk() 135 if (hz > HSSPI_MAX_SYNC_CLOCK) in bcm63xx_hsspi_set_clk()
|
D | spi-au1550.c | 233 unsigned bpw, hz; in au1550_spi_setupxfer() local 237 hz = spi->max_speed_hz; in au1550_spi_setupxfer() 242 hz = t->speed_hz; in au1550_spi_setupxfer() 245 if (!hz) in au1550_spi_setupxfer() 264 cfg |= au1550_spi_baudcfg(hw, hz); in au1550_spi_setupxfer()
|
D | spi-davinci.c | 290 u32 hz = 0, spifmt = 0; in davinci_spi_setup_transfer() local 300 hz = t->speed_hz; in davinci_spi_setup_transfer() 321 if (!hz) in davinci_spi_setup_transfer() 322 hz = spi->max_speed_hz; in davinci_spi_setup_transfer() 326 prescale = davinci_spi_get_prescale(dspi, hz); in davinci_spi_setup_transfer()
|
D | spi-oc-tiny.c | 65 static unsigned int tiny_spi_baud(struct spi_device *spi, unsigned int hz) in tiny_spi_baud() argument 69 return min(DIV_ROUND_UP(hw->freq, hz * 2), (1U << hw->baudwidth)) - 1; in tiny_spi_baud()
|
D | spi-sirf.c | 526 int hz = 0; in spi_sirfsoc_setup_transfer() local 534 hz = t && t->speed_hz ? t->speed_hz : spi->max_speed_hz; in spi_sirfsoc_setup_transfer() 536 regval = (sspi->ctrl_freq / (2 * hz)) - 1; in spi_sirfsoc_setup_transfer() 538 dev_err(&spi->dev, "Speed %d not supported\n", hz); in spi_sirfsoc_setup_transfer()
|
/linux-4.1.27/arch/m68k/atari/ |
D | atasound.c | 54 void atari_mksound (unsigned int hz, unsigned int ticks) in atari_mksound() argument 71 if (hz) { in atari_mksound() 75 period = PSG_FREQ / hz; in atari_mksound()
|
/linux-4.1.27/drivers/pwm/ |
D | pwm-tegra.c | 71 unsigned long rate, hz; in tegra_pwm_config() local 90 hz = NSEC_PER_SEC / period_ns; in tegra_pwm_config() 92 rate = (rate + (hz / 2)) / hz; in tegra_pwm_config()
|
/linux-4.1.27/drivers/staging/sm750fb/ |
D | sm750.h | 173 unsigned long long hz = 1000*1000*1000*1000ULL; \ 174 do_div(hz,ps); \ 175 (unsigned long)hz;})
|
D | readme | 10 Use 1280,8bpp index color and 60 hz mode: 33 refresh rate, kernel driver will defaulty use 16bpp and 60hz
|
/linux-4.1.27/drivers/iio/common/st_sensors/ |
D | st_sensors_core.c | 53 if (sensor_settings->odr.odr_avl[i].hz == 0) in st_sensors_match_odr() 56 if (sensor_settings->odr.odr_avl[i].hz == odr) { in st_sensors_match_odr() 57 odr_out->hz = sensor_settings->odr.odr_avl[i].hz; in st_sensors_match_odr() 97 sdata->odr = odr_out.hz; in st_sensors_set_odr() 179 sdata->odr = odr_out.hz; in st_sensors_set_enable() 519 if (sdata->sensor_settings->odr.odr_avl[i].hz == 0) in st_sensors_sysfs_sampling_frequency_avail() 523 sdata->sensor_settings->odr.odr_avl[i].hz); in st_sensors_sysfs_sampling_frequency_avail()
|
/linux-4.1.27/drivers/ssb/ |
D | driver_mipscore.c | 296 unsigned long hz, ns; in ssb_mipscore_init() local 305 hz = ssb_clockspeed(bus); in ssb_mipscore_init() 306 if (!hz) in ssb_mipscore_init() 307 hz = 100000000; in ssb_mipscore_init() 308 ns = 1000000000 / hz; in ssb_mipscore_init()
|
/linux-4.1.27/drivers/clocksource/ |
D | mmio.c | 53 unsigned long hz, int rating, unsigned bits, in clocksource_mmio_init() argument 72 return clocksource_register_hz(&cs->clksrc, hz); in clocksource_mmio_init()
|
/linux-4.1.27/arch/mips/kernel/ |
D | cevt-ds1287.c | 33 int ds1287_set_base_clock(unsigned int hz) in ds1287_set_base_clock() argument 37 switch (hz) { in ds1287_set_base_clock()
|
/linux-4.1.27/drivers/gpu/drm/via/ |
D | via_verifier.c | 114 hazard_t hz; member 347 investigate_hazard(uint32_t cmd, hazard_t hz, drm_via_state_t *cur_seq) in investigate_hazard() argument 351 if (cur_seq->unfinished && (cur_seq->unfinished != seqs[hz])) { in investigate_hazard() 357 switch (hz) { in investigate_hazard() 629 hazard_t hz; in via_check_header2() local 696 if ((hz = hz_table[cmd >> 24])) { in via_check_header2() 697 if ((hz_mode = investigate_hazard(cmd, hz, hc_state))) { in via_check_header2() 1100 table[init_table[i].code] = init_table[i].hz; in setup_hazard_table()
|
/linux-4.1.27/kernel/ |
D | .gitignore | 7 hz.bc
|
/linux-4.1.27/arch/m68k/q40/ |
D | q40ints.c | 110 void q40_mksound(unsigned int hz, unsigned int ticks) in q40_mksound() argument 114 if (hz == 0) { in q40_mksound()
|
/linux-4.1.27/include/media/ |
D | smiapp.h | 79 int (*set_xclk)(struct v4l2_subdev *sd, int hz);
|
/linux-4.1.27/Documentation/devicetree/bindings/ufs/ |
D | ufshcd-pltfrm.txt | 29 - freq-table-hz : Array of <min max> operating frequencies stored in the same 56 freq-table-hz = <100000000 200000000>, <0 0>, <0 0>;
|
/linux-4.1.27/Documentation/devicetree/bindings/rtc/ |
D | sa1100-rtc.txt | 8 interrupt and the second interrupt number is the rtc hz interrupt.
|
/linux-4.1.27/drivers/staging/sm7xxfb/ |
D | sm7xxfb.c | 54 u_int hz; member 476 sfb->width, sfb->height, sfb->fb.var.bits_per_pixel, sfb->hz); in sm7xx_set_timing() 482 vgamode[j].hz == sfb->hz) { in sm7xx_set_timing() 486 vgamode[j].bpp, vgamode[j].hz); in sm7xx_set_timing() 632 sfb->hz = 60; in smtcfb_setmode()
|
D | sm7xx.h | 105 int hz; member
|
/linux-4.1.27/drivers/input/keyboard/ |
D | lm8323.c | 456 int div512, perstep, steps, hz, up, kill; in lm8323_pwm_work() local 481 hz = 32768 / 512; in lm8323_pwm_work() 484 hz = 32768 / 16; in lm8323_pwm_work() 487 perstep = (hz * pwm->fade_time) / (steps * 1000); in lm8323_pwm_work()
|
/linux-4.1.27/Documentation/devicetree/bindings/c6x/ |
D | clocks.txt | 19 - clock-frequency: input clock frequency in hz
|
/linux-4.1.27/arch/score/ |
D | Kconfig | 64 source "kernel/Kconfig.hz"
|
/linux-4.1.27/drivers/mmc/core/ |
D | core.h | 42 void mmc_set_clock(struct mmc_host *host, unsigned int hz);
|
D | core.c | 1021 static void __mmc_set_clock(struct mmc_host *host, unsigned int hz) in __mmc_set_clock() argument 1023 WARN_ON(hz && hz < host->f_min); in __mmc_set_clock() 1025 if (hz > host->f_max) in __mmc_set_clock() 1026 hz = host->f_max; in __mmc_set_clock() 1028 host->ios.clock = hz; in __mmc_set_clock() 1032 void mmc_set_clock(struct mmc_host *host, unsigned int hz) in mmc_set_clock() argument 1035 __mmc_set_clock(host, hz); in mmc_set_clock()
|
/linux-4.1.27/sound/soc/codecs/ |
D | cs42l52.c | 992 unsigned int code, int hz) in cs42l52_beep_event() argument 997 dev_dbg(codec->dev, "Beep event %x %x\n", code, hz); in cs42l52_beep_event() 1001 if (hz) in cs42l52_beep_event() 1002 hz = 261; in cs42l52_beep_event() 1010 cs42l52->beep_rate = hz; in cs42l52_beep_event()
|
D | cs42l56.c | 1062 unsigned int code, int hz) in cs42l56_beep_event() argument 1067 dev_dbg(codec->dev, "Beep event %x %x\n", code, hz); in cs42l56_beep_event() 1071 if (hz) in cs42l56_beep_event() 1072 hz = 261; in cs42l56_beep_event() 1080 cs42l56->beep_rate = hz; in cs42l56_beep_event()
|
D | wm8962.c | 3200 unsigned int code, int hz) in wm8962_beep_event() argument 3205 dev_dbg(codec->dev, "Beep event %x %x\n", code, hz); in wm8962_beep_event() 3209 if (hz) in wm8962_beep_event() 3210 hz = 1000; in wm8962_beep_event() 3218 wm8962->beep_rate = hz; in wm8962_beep_event()
|
/linux-4.1.27/drivers/gpu/host1x/ |
D | intr.c | 307 u32 hz = clk_get_rate(host->clk); in host1x_intr_start() local 311 err = host1x_hw_intr_init_host_sync(host, DIV_ROUND_UP(hz, 1000000), in host1x_intr_start()
|
/linux-4.1.27/drivers/tty/vt/ |
D | keyboard.c | 228 unsigned int *hz = data; in kd_sound_helper() local 233 input_inject_event(handle, EV_SND, SND_TONE, *hz); in kd_sound_helper() 234 if (*hz) in kd_sound_helper() 238 input_inject_event(handle, EV_SND, SND_BELL, *hz ? 1 : 0); in kd_sound_helper() 253 void kd_mksound(unsigned int hz, unsigned int ticks) in kd_mksound() argument 257 input_handler_for_each_handle(&kbd_handler, &hz, kd_sound_helper); in kd_mksound() 259 if (hz && ticks) in kd_mksound()
|
/linux-4.1.27/drivers/video/fbdev/core/ |
D | fbmon.c | 720 int num_modes, hz, hscan, pixclock; in fb_get_monitor_limits() local 746 hz = (hscan + vtotal / 2) / vtotal; in fb_get_monitor_limits() 760 if (specs->vfmax == 0 || specs->vfmax < hz) in fb_get_monitor_limits() 761 specs->vfmax = hz; in fb_get_monitor_limits() 763 if (specs->vfmin == 0 || specs->vfmin > hz) in fb_get_monitor_limits() 764 specs->vfmin = hz; in fb_get_monitor_limits()
|
/linux-4.1.27/drivers/mmc/host/ |
D | cb710-mmc.c | 28 static void cb710_mmc_select_clock_divider(struct mmc_host *mmc, int hz) in cb710_mmc_select_clock_divider() argument 46 if (hz >= src_hz >> cb710_clock_divider_log2[divider_idx]) in cb710_mmc_select_clock_divider() 60 hz, src_freq_idx, divider_idx & 7, divider_idx & 8); in cb710_mmc_select_clock_divider()
|
/linux-4.1.27/include/linux/iio/common/ |
D | st_sensors.h | 72 unsigned int hz; member
|
/linux-4.1.27/sound/isa/sb/ |
D | emu8000_pcm.c | 149 static int calc_rate_offset(int hz) in calc_rate_offset() argument 151 return snd_sf_linear_to_log(hz, OFFSET_SAMPLERATE, SAMPLERATE_RATIO); in calc_rate_offset()
|
/linux-4.1.27/arch/hexagon/ |
D | Kconfig | 154 source "kernel/Kconfig.hz"
|
/linux-4.1.27/arch/openrisc/ |
D | Kconfig | 104 source kernel/Kconfig.hz
|
/linux-4.1.27/arch/c6x/ |
D | Kconfig | 116 source "kernel/Kconfig.hz"
|
/linux-4.1.27/tools/perf/util/ |
D | svghelper.c | 450 static char *HzToHuman(unsigned long hz) in HzToHuman() argument 457 Hz = hz; in HzToHuman()
|
/linux-4.1.27/drivers/iio/imu/inv_mpu6050/ |
D | inv_mpu_core.c | 528 const int hz[] = {188, 98, 42, 20, 10, 5}; in inv_mpu6050_set_lpf() local 537 while ((h < hz[i]) && (i < ARRAY_SIZE(d) - 1)) in inv_mpu6050_set_lpf()
|
/linux-4.1.27/Documentation/devicetree/bindings/misc/ |
D | lis302.txt | 55 - st,highpass-cutoff-hz=: 1, 2, 4 or 8 for 1Hz, 2Hz, 4Hz or 8Hz of
|
/linux-4.1.27/drivers/iio/pressure/ |
D | st_pressure_core.c | 440 press_data->odr = press_data->sensor_settings->odr.odr_avl[0].hz; in st_press_common_probe()
|
/linux-4.1.27/drivers/iio/magnetometer/ |
D | st_magn_core.c | 389 mdata->odr = mdata->sensor_settings->odr.odr_avl[0].hz; in st_magn_common_probe()
|
/linux-4.1.27/arch/unicore32/ |
D | Kconfig | 147 source "kernel/Kconfig.hz"
|
/linux-4.1.27/drivers/iio/gyro/ |
D | st_gyro_core.c | 420 gdata->odr = gdata->sensor_settings->odr.odr_avl[0].hz; in st_gyro_common_probe()
|
/linux-4.1.27/drivers/media/i2c/ |
D | saa7115.c | 759 u32 hz; in saa711x_s_clock_freq() local 774 hz = (state->std & V4L2_STD_525_60) ? 5994 : 5000; in saa711x_s_clock_freq() 776 acpf = (25600 * freq) / hz; in saa711x_s_clock_freq()
|
/linux-4.1.27/drivers/net/wan/ |
D | dscc4.c | 875 static inline int dscc4_set_quartz(struct dscc4_dev_priv *dpriv, int hz) in dscc4_set_quartz() argument 879 if ((hz < 0) || (hz > DSCC4_HZ_MAX)) in dscc4_set_quartz() 882 dpriv->pci_priv->xtal_hz = hz; in dscc4_set_quartz()
|
/linux-4.1.27/arch/nios2/ |
D | Kconfig | 55 source "kernel/Kconfig.hz"
|
/linux-4.1.27/arch/avr32/ |
D | Kconfig | 234 source "kernel/Kconfig.hz"
|
/linux-4.1.27/drivers/iio/accel/ |
D | st_accel_core.c | 560 adata->odr = adata->sensor_settings->odr.odr_avl[0].hz; in st_accel_common_probe()
|
/linux-4.1.27/sound/synth/emux/ |
D | soundfont.c | 846 calc_rate_offset(int hz) in calc_rate_offset() argument 848 return snd_sf_linear_to_log(hz, OFFSET_SAMPLERATE, SAMPLERATE_RATIO); in calc_rate_offset()
|
/linux-4.1.27/arch/metag/ |
D | Kconfig | 258 source kernel/Kconfig.hz
|
/linux-4.1.27/arch/microblaze/ |
D | Kconfig | 83 source "kernel/Kconfig.hz"
|
/linux-4.1.27/arch/parisc/ |
D | Kconfig | 285 source "kernel/Kconfig.hz"
|
/linux-4.1.27/drivers/video/fbdev/aty/ |
D | radeon_base.c | 462 unsigned long long hz, vclk; in radeon_probe_pll_params() local 502 hz = 1000000/total_usecs; in radeon_probe_pll_params() 506 vclk = (long long)hTotal * (long long)vTotal * hz; in radeon_probe_pll_params()
|
/linux-4.1.27/arch/mn10300/ |
D | Kconfig | 231 source "kernel/Kconfig.hz"
|
/linux-4.1.27/arch/tile/ |
D | Kconfig | 197 source "kernel/Kconfig.hz"
|
/linux-4.1.27/arch/sparc/ |
D | Kconfig | 189 source kernel/Kconfig.hz
|
/linux-4.1.27/arch/ia64/ |
D | Kconfig | 301 source kernel/Kconfig.hz
|
/linux-4.1.27/arch/sh/ |
D | Kconfig | 600 source kernel/Kconfig.hz
|
/linux-4.1.27/arch/s390/ |
D | Kconfig | 408 source kernel/Kconfig.hz
|
/linux-4.1.27/fs/ceph/ |
D | mds_client.c | 3304 unsigned hz = round_jiffies_relative(HZ * delay); in schedule_delayed() local 3305 schedule_delayed_work(&mdsc->delayed_work, hz); in schedule_delayed()
|
/linux-4.1.27/tools/power/cpupower/po/ |
D | fr.po | 609 " les valeurs par hz, kHz (par d�faut), MHz, GHz ou THz\n"
|
/linux-4.1.27/arch/powerpc/ |
D | Kconfig | 317 source kernel/Kconfig.hz
|
/linux-4.1.27/arch/blackfin/ |
D | Kconfig | 655 source kernel/Kconfig.hz
|
/linux-4.1.27/arch/x86/ |
D | Kconfig | 1716 source kernel/Kconfig.hz
|