Home
last modified time | relevance | path

Searched refs:rate (Results 176 - 200 of 4574) sorted by relevance

12345678910>>...183

/kernel/linux/linux-6.6/drivers/clk/at91/
H A Dclk-smd.c46 if (req->rate >= req->best_parent_rate) { in at91sam9x5_clk_smd_determine_rate()
47 req->rate = req->best_parent_rate; in at91sam9x5_clk_smd_determine_rate()
51 div = req->best_parent_rate / req->rate; in at91sam9x5_clk_smd_determine_rate()
53 req->rate = req->best_parent_rate / (SMD_MAX_DIV + 1); in at91sam9x5_clk_smd_determine_rate()
59 if (bestrate - req->rate > req->rate - tmp) in at91sam9x5_clk_smd_determine_rate()
62 req->rate = bestrate; in at91sam9x5_clk_smd_determine_rate()
89 static int at91sam9x5_clk_smd_set_rate(struct clk_hw *hw, unsigned long rate, in at91sam9x5_clk_smd_set_rate() argument
93 unsigned long div = parent_rate / rate; in at91sam9x5_clk_smd_set_rate()
95 if (parent_rate % rate || di in at91sam9x5_clk_smd_set_rate()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/msm/disp/mdp4/
H A Dmdp4_lvds_pll.c26 unsigned long rate; member
48 static const struct pll_rate *find_rate(unsigned long rate) in find_rate() argument
52 if (rate > freqtbl[i].rate) in find_rate()
64 DBG("pixclk=%lu (%lu)", lvds_pll->pixclk, pll_rate->rate); in mpd4_lvds_pll_enable()
101 static long mpd4_lvds_pll_round_rate(struct clk_hw *hw, unsigned long rate, in mpd4_lvds_pll_round_rate() argument
104 const struct pll_rate *pll_rate = find_rate(rate); in mpd4_lvds_pll_round_rate()
105 return pll_rate->rate; in mpd4_lvds_pll_round_rate()
108 static int mpd4_lvds_pll_set_rate(struct clk_hw *hw, unsigned long rate, in mpd4_lvds_pll_set_rate() argument
112 lvds_pll->pixclk = rate; in mpd4_lvds_pll_set_rate()
[all...]
/third_party/pulseaudio/src/pulsecore/
H A Dcore-format.c42 pa_format_info_set_rate(format, ss->rate); in pa_format_info_from_sample_spec2()
89 r = pa_format_info_get_rate(f, &ss_local.rate); in pa_format_info_to_sample_spec2()
91 ss_local.rate = fallback_ss->rate; in pa_format_info_to_sample_spec2()
95 pa_assert(pa_sample_rate_valid(ss_local.rate)); in pa_format_info_to_sample_spec2()
131 int rate; in pa_format_info_to_sample_spec_fake() local
157 pa_return_val_if_fail(pa_format_info_get_prop_int(f, PA_PROP_FORMAT_RATE, &rate) == 0, -PA_ERR_INVALID); in pa_format_info_to_sample_spec_fake()
158 ss->rate = (uint32_t) rate; in pa_format_info_to_sample_spec_fake()
161 ss->rate * in pa_format_info_to_sample_spec_fake()
[all...]
/third_party/toybox/toys/other/
H A Dsha3sum.c67 int span, ii, len, rate = 200-TT.a/4; in do_sha3sum() local
71 for (len = 0;; ss += rate) { in do_sha3sum()
72 if ((span = len-(ss-toybuf))<rate) { in do_sha3sum()
76 if (span>rate) span = rate; in do_sha3sum()
78 if (rate!=span) { in do_sha3sum()
80 buf[rate-1] ^= 0x80; in do_sha3sum()
83 if (span<rate) break; in do_sha3sum()
87 printf("%02x", buf[ii%rate]); in do_sha3sum()
88 if (!(++ii%rate)) kecca in do_sha3sum()
[all...]
/kernel/linux/linux-6.6/sound/usb/
H A Dformat.c159 static int set_fixed_rate(struct audioformat *fp, int rate, int rate_bits) in set_fixed_rate() argument
166 fp->rate_min = rate; in set_fixed_rate()
167 fp->rate_max = rate; in set_fixed_rate()
169 fp->rate_table[0] = rate; in set_fixed_rate()
173 /* set up rate_min, rate_max and rates from the rate table */
176 unsigned int rate; in set_rate_table_min_max() local
183 rate = fp->rate_table[i]; in set_rate_table_min_max()
184 fp->rate_min = min(fp->rate_min, rate); in set_rate_table_min_max()
185 fp->rate_max = max(fp->rate_max, rate); in set_rate_table_min_max()
186 fp->rates |= snd_pcm_rate_to_rate_bit(rate); in set_rate_table_min_max()
225 unsigned int rate = combine_triple(&fmt[idx]); parse_audio_format_rates_v1() local
281 s1810c_valid_sample_rate(struct audioformat *fp, unsigned int rate) s1810c_valid_sample_rate() argument
305 focusrite_valid_sample_rate(struct snd_usb_audio *chip, struct audioformat *fp, unsigned int rate) focusrite_valid_sample_rate() argument
362 unsigned int rate; parse_uac2_sample_rate_range() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/frame_rate/
H A Dframe_rate_manager.cpp28 void FrameRateManager::AddNodeRate(int32_t nodeId, int32_t rate) in AddNodeRate() argument
30 auto [iter, success] = nodeRateMap_.try_emplace(nodeId, rate); in AddNodeRate()
44 void FrameRateManager::UpdateNodeRate(int32_t nodeId, int32_t rate) in UpdateNodeRate() argument
46 if (auto iter = nodeRateMap_.find(nodeId); iter != nodeRateMap_.end() && iter->second != rate) { in UpdateNodeRate()
47 iter->second = rate; in UpdateNodeRate()
52 void FrameRateManager::SetAnimateRate(int32_t rate, bool hasFirstFrameAnimation) in SetAnimateRate() argument
54 if (animateRate_ != rate || hasFirstFrameAnimation_ != hasFirstFrameAnimation) { in SetAnimateRate()
56 animateRate_ = rate; in SetAnimateRate()
/kernel/linux/linux-5.10/drivers/clk/actions/
H A Dowl-divider.c18 unsigned long rate, in owl_divider_helper_round_rate()
21 return divider_round_rate(&common->hw, rate, parent_rate, in owl_divider_helper_round_rate()
26 static long owl_divider_round_rate(struct clk_hw *hw, unsigned long rate, in owl_divider_round_rate() argument
32 rate, parent_rate); in owl_divider_round_rate()
63 unsigned long rate, in owl_divider_helper_set_rate()
69 val = divider_get_val(rate, parent_rate, div_hw->table, in owl_divider_helper_set_rate()
81 static int owl_divider_set_rate(struct clk_hw *hw, unsigned long rate, in owl_divider_set_rate() argument
87 rate, parent_rate); in owl_divider_set_rate()
16 owl_divider_helper_round_rate(struct owl_clk_common *common, const struct owl_divider_hw *div_hw, unsigned long rate, unsigned long *parent_rate) owl_divider_helper_round_rate() argument
61 owl_divider_helper_set_rate(const struct owl_clk_common *common, const struct owl_divider_hw *div_hw, unsigned long rate, unsigned long parent_rate) owl_divider_helper_set_rate() argument
/kernel/linux/linux-5.10/drivers/clk/sprd/
H A Ddiv.c14 unsigned long rate, in sprd_div_helper_round_rate()
17 return divider_round_rate(&common->hw, rate, parent_rate, in sprd_div_helper_round_rate()
22 static long sprd_div_round_rate(struct clk_hw *hw, unsigned long rate, in sprd_div_round_rate() argument
28 rate, parent_rate); in sprd_div_round_rate()
57 unsigned long rate, in sprd_div_helper_set_rate()
63 val = divider_get_val(rate, parent_rate, NULL, in sprd_div_helper_set_rate()
77 static int sprd_div_set_rate(struct clk_hw *hw, unsigned long rate, in sprd_div_set_rate() argument
83 rate, parent_rate); in sprd_div_set_rate()
12 sprd_div_helper_round_rate(struct sprd_clk_common *common, const struct sprd_div_internal *div, unsigned long rate, unsigned long *parent_rate) sprd_div_helper_round_rate() argument
55 sprd_div_helper_set_rate(const struct sprd_clk_common *common, const struct sprd_div_internal *div, unsigned long rate, unsigned long parent_rate) sprd_div_helper_set_rate() argument
/kernel/linux/linux-6.6/drivers/clk/actions/
H A Dowl-divider.c18 unsigned long rate, in owl_divider_helper_round_rate()
21 return divider_round_rate(&common->hw, rate, parent_rate, in owl_divider_helper_round_rate()
26 static long owl_divider_round_rate(struct clk_hw *hw, unsigned long rate, in owl_divider_round_rate() argument
32 rate, parent_rate); in owl_divider_round_rate()
63 unsigned long rate, in owl_divider_helper_set_rate()
69 val = divider_get_val(rate, parent_rate, div_hw->table, in owl_divider_helper_set_rate()
81 static int owl_divider_set_rate(struct clk_hw *hw, unsigned long rate, in owl_divider_set_rate() argument
87 rate, parent_rate); in owl_divider_set_rate()
16 owl_divider_helper_round_rate(struct owl_clk_common *common, const struct owl_divider_hw *div_hw, unsigned long rate, unsigned long *parent_rate) owl_divider_helper_round_rate() argument
61 owl_divider_helper_set_rate(const struct owl_clk_common *common, const struct owl_divider_hw *div_hw, unsigned long rate, unsigned long parent_rate) owl_divider_helper_set_rate() argument
/kernel/linux/linux-5.10/drivers/clk/tegra/
H A Dclk-audio-sync.c17 return sync->rate; in clk_sync_source_recalc_rate()
20 static long clk_sync_source_round_rate(struct clk_hw *hw, unsigned long rate, in clk_sync_source_round_rate() argument
25 if (rate > sync->max_rate) in clk_sync_source_round_rate()
28 return rate; in clk_sync_source_round_rate()
31 static int clk_sync_source_set_rate(struct clk_hw *hw, unsigned long rate, in clk_sync_source_set_rate() argument
36 sync->rate = rate; in clk_sync_source_set_rate()
H A Dclk-sdmmc-mux.c93 u64 rate = parent_rate; in clk_sdmmc_mux_recalc_rate() local
100 rate *= SDMMC_MUL; in clk_sdmmc_mux_recalc_rate()
101 rate += div - 1; in clk_sdmmc_mux_recalc_rate()
102 do_div(rate, div); in clk_sdmmc_mux_recalc_rate()
104 return rate; in clk_sdmmc_mux_recalc_rate()
114 req->rate = max(req->rate, req->min_rate); in clk_sdmmc_mux_determine_rate()
115 req->rate = min(req->rate, req->max_rate); in clk_sdmmc_mux_determine_rate()
117 if (!req->rate) in clk_sdmmc_mux_determine_rate()
133 clk_sdmmc_mux_set_rate(struct clk_hw *hw, unsigned long rate, unsigned long parent_rate) clk_sdmmc_mux_set_rate() argument
210 unsigned long rate = clk_hw_get_rate(hw); clk_sdmmc_mux_restore_context() local
[all...]
/kernel/linux/linux-5.10/arch/mips/ralink/
H A Dclk.c20 unsigned long rate; member
23 void ralink_clk_add(const char *dev, unsigned long rate) in ralink_clk_add() argument
33 clk->rate = rate; in ralink_clk_add()
57 return clk->rate; in clk_get_rate()
61 int clk_set_rate(struct clk *clk, unsigned long rate) in clk_set_rate() argument
67 long clk_round_rate(struct clk *clk, unsigned long rate) in clk_round_rate() argument
/kernel/linux/linux-6.6/drivers/clk/tegra/
H A Dclk-audio-sync.c17 return sync->rate; in clk_sync_source_recalc_rate()
20 static long clk_sync_source_round_rate(struct clk_hw *hw, unsigned long rate, in clk_sync_source_round_rate() argument
25 if (rate > sync->max_rate) in clk_sync_source_round_rate()
28 return rate; in clk_sync_source_round_rate()
31 static int clk_sync_source_set_rate(struct clk_hw *hw, unsigned long rate, in clk_sync_source_set_rate() argument
36 sync->rate = rate; in clk_sync_source_set_rate()
H A Dclk-sdmmc-mux.c93 u64 rate = parent_rate; in clk_sdmmc_mux_recalc_rate() local
100 rate *= SDMMC_MUL; in clk_sdmmc_mux_recalc_rate()
101 rate += div - 1; in clk_sdmmc_mux_recalc_rate()
102 do_div(rate, div); in clk_sdmmc_mux_recalc_rate()
104 return rate; in clk_sdmmc_mux_recalc_rate()
114 req->rate = max(req->rate, req->min_rate); in clk_sdmmc_mux_determine_rate()
115 req->rate = min(req->rate, req->max_rate); in clk_sdmmc_mux_determine_rate()
117 if (!req->rate) in clk_sdmmc_mux_determine_rate()
133 clk_sdmmc_mux_set_rate(struct clk_hw *hw, unsigned long rate, unsigned long parent_rate) clk_sdmmc_mux_set_rate() argument
210 unsigned long rate = clk_hw_get_rate(hw); clk_sdmmc_mux_restore_context() local
[all...]
/third_party/ffmpeg/libavutil/
H A Dtimecode.h44 AVRational rate; ///< frame rate in rational form member
45 unsigned fps; ///< frame per second; must be consistent with the rate field
88 * @param rate frame rate in rational form
96 uint32_t av_timecode_get_smpte(AVRational rate, int drop, int hh, int mm, int ss, int ff);
119 * @param rate frame rate of the timecode
127 char *av_timecode_make_smpte_tc_string2(char *buf, AVRational rate, uint32_t tcsmpte, int prevent_df, int skip_field);
155 * @param rate fram
[all...]
/third_party/pulseaudio/speex/libspeexdsp/
H A Dtestresample2.c50 int rate = 1000, off = 0, avail = INBLOCK; in main() local
52 speex_resampler_set_rate(st, RATE, rate); in main()
67 out_len = (in_len * rate + RATE-1) / RATE; in main()
69 fprintf (stderr, "%d %d %d %d -> ", rate, off, in_len, out_len); in main()
82 rate += 100; in main()
83 if (rate > 128000) in main()
86 speex_resampler_set_rate(st, RATE, rate); in main()
/kernel/linux/linux-5.10/drivers/clk/sunxi-ng/
H A Dccu_nkm.c19 static void ccu_nkm_find_best(unsigned long parent, unsigned long rate, in ccu_nkm_find_best() argument
33 if (tmp_rate > rate) in ccu_nkm_find_best()
35 if ((rate - tmp_rate) < (rate - best_rate)) { in ccu_nkm_find_best()
75 unsigned long n, m, k, rate; in ccu_nkm_recalc_rate() local
98 rate = parent_rate * n * k / m; in ccu_nkm_recalc_rate()
101 rate /= nkm->fixed_post_div; in ccu_nkm_recalc_rate()
103 return rate; in ccu_nkm_recalc_rate()
109 unsigned long rate, in ccu_nkm_round_rate()
123 rate * in ccu_nkm_round_rate()
106 ccu_nkm_round_rate(struct ccu_mux_internal *mux, struct clk_hw *hw, unsigned long *parent_rate, unsigned long rate, void *data) ccu_nkm_round_rate() argument
144 ccu_nkm_set_rate(struct clk_hw *hw, unsigned long rate, unsigned long parent_rate) ccu_nkm_set_rate() argument
[all...]
/kernel/linux/linux-5.10/drivers/clk/at91/
H A Dclk-usb.c76 tmp_parent_rate = req->rate * div; in at91sam9x5_clk_usb_determine_rate()
83 if (tmp_rate < req->rate) in at91sam9x5_clk_usb_determine_rate()
84 tmp_diff = req->rate - tmp_rate; in at91sam9x5_clk_usb_determine_rate()
86 tmp_diff = tmp_rate - req->rate; in at91sam9x5_clk_usb_determine_rate()
95 if (!best_diff || tmp_rate < req->rate) in at91sam9x5_clk_usb_determine_rate()
106 req->rate = best_rate; in at91sam9x5_clk_usb_determine_rate()
132 static int at91sam9x5_clk_usb_set_rate(struct clk_hw *hw, unsigned long rate, in at91sam9x5_clk_usb_set_rate() argument
138 if (!rate) in at91sam9x5_clk_usb_set_rate()
141 div = DIV_ROUND_CLOSEST(parent_rate, rate); in at91sam9x5_clk_usb_set_rate()
295 static long at91rm9200_clk_usb_round_rate(struct clk_hw *hw, unsigned long rate, in at91rm9200_clk_usb_round_rate() argument
333 at91rm9200_clk_usb_set_rate(struct clk_hw *hw, unsigned long rate, unsigned long parent_rate) at91rm9200_clk_usb_set_rate() argument
[all...]
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtlwifi/
H A Drc.c9 *Finds the highest rate index we can use
11 *it to lowest rate CCK_1M, otherwise we set rate to
12 *highest rate based on wireless mode used for iwconfig
13 *show Tx rate.
24 struct ieee80211_tx_rate rate; in _rtl_rc_get_highest_rix() local
42 *this rate is no use for true rate, firmware in _rtl_rc_get_highest_rix()
43 *will control rate at all it just used for in _rtl_rc_get_highest_rix()
45 *2.in rtl_get_tcb_desc when we check rate i in _rtl_rc_get_highest_rix()
111 _rtl_rc_rate_set_series(struct rtl_priv *rtlpriv, struct ieee80211_sta *sta, struct ieee80211_tx_rate *rate, struct ieee80211_tx_rate_control *txrc, u8 tries, s8 rix, int rtsctsenable, bool not_data) _rtl_rc_rate_set_series() argument
[all...]
/kernel/linux/linux-6.6/drivers/net/wireless/realtek/rtlwifi/
H A Drc.c9 *Finds the highest rate index we can use
11 *it to lowest rate CCK_1M, otherwise we set rate to
12 *highest rate based on wireless mode used for iwconfig
13 *show Tx rate.
24 struct ieee80211_tx_rate rate; in _rtl_rc_get_highest_rix() local
42 *this rate is no use for true rate, firmware in _rtl_rc_get_highest_rix()
43 *will control rate at all it just used for in _rtl_rc_get_highest_rix()
45 *2.in rtl_get_tcb_desc when we check rate i in _rtl_rc_get_highest_rix()
111 _rtl_rc_rate_set_series(struct rtl_priv *rtlpriv, struct ieee80211_sta *sta, struct ieee80211_tx_rate *rate, struct ieee80211_tx_rate_control *txrc, u8 tries, s8 rix, int rtsctsenable, bool not_data) _rtl_rc_rate_set_series() argument
[all...]
/third_party/ffmpeg/libavformat/
H A Dwvdec.c54 int rate, chan, bpp; member
82 int rate, bpp, chan; in wv_read_block_header() local
118 rate = wv_rates[(flags >> 23) & 0xF]; in wv_read_block_header()
124 if ((rate == -1 || !chan || flags & WV_DSD) && !wc->block_parsed) { in wv_read_block_header()
188 rate = avio_rl24(pb); in wv_read_block_header()
196 if (rate == -1 || rate * (uint64_t)rate_x >= INT_MAX) { in wv_read_block_header()
198 "Cannot determine custom sampling rate\n"); in wv_read_block_header()
209 if (!wc->rate) in wv_read_block_header()
210 wc->rate in wv_read_block_header()
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/sun4i/
H A Dsun8i_hdmi_phy_clk.c23 unsigned long rate = req->rate; in sun8i_phy_clk_determine_rate() local
36 unsigned long ideal = rate * i; in sun8i_phy_clk_determine_rate()
49 abs(rate - rounded / i) < in sun8i_phy_clk_determine_rate()
50 abs(rate - best_rate / best_div)) { in sun8i_phy_clk_determine_rate()
57 if (best_rate / best_div == rate) in sun8i_phy_clk_determine_rate()
61 req->rate = best_rate / best_div; in sun8i_phy_clk_determine_rate()
81 static int sun8i_phy_clk_set_rate(struct clk_hw *hw, unsigned long rate, in sun8i_phy_clk_set_rate() argument
91 if (tmp_rate > rate) in sun8i_phy_clk_set_rate()
95 (rate in sun8i_phy_clk_set_rate()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/sun4i/
H A Dsun8i_hdmi_phy_clk.c23 unsigned long rate = req->rate; in sun8i_phy_clk_determine_rate() local
36 unsigned long ideal = rate * i; in sun8i_phy_clk_determine_rate()
49 abs(rate - rounded / i) < in sun8i_phy_clk_determine_rate()
50 abs(rate - best_rate / best_div)) { in sun8i_phy_clk_determine_rate()
57 if (best_rate / best_div == rate) in sun8i_phy_clk_determine_rate()
61 req->rate = best_rate / best_div; in sun8i_phy_clk_determine_rate()
81 static int sun8i_phy_clk_set_rate(struct clk_hw *hw, unsigned long rate, in sun8i_phy_clk_set_rate() argument
91 if (tmp_rate > rate) in sun8i_phy_clk_set_rate()
95 (rate in sun8i_phy_clk_set_rate()
[all...]
/kernel/linux/linux-5.10/drivers/clk/microchip/
H A Dclk-core.c75 /* SoC specific clock needed during SPLL clock rate switch */
119 static unsigned long calc_best_divided_rate(unsigned long rate, in calc_best_divided_rate() argument
129 * Find best divider to produce closest of target divided rate. in calc_best_divided_rate()
131 div = parent_rate / rate; in calc_best_divided_rate()
137 if (abs(rate - divided_rate_down) < abs(rate - divided_rate)) in calc_best_divided_rate()
158 static long pbclk_round_rate(struct clk_hw *hw, unsigned long rate, in pbclk_round_rate() argument
161 return calc_best_divided_rate(rate, *parent_rate, in pbclk_round_rate()
165 static int pbclk_set_rate(struct clk_hw *hw, unsigned long rate, in pbclk_set_rate() argument
179 /* calculate clkdiv and best rate */ in pbclk_set_rate()
317 roclk_calc_div_trim(unsigned long rate, unsigned long parent_rate, u32 *rodiv_p, u32 *rotrim_p) roclk_calc_div_trim() argument
375 roclk_round_rate(struct clk_hw *hw, unsigned long rate, unsigned long *parent_rate) roclk_round_rate() argument
475 roclk_set_rate_and_parent(struct clk_hw *hw, unsigned long rate, unsigned long parent_rate, u8 index) roclk_set_rate_and_parent() argument
537 roclk_set_rate(struct clk_hw *hw, unsigned long rate, unsigned long parent_rate) roclk_set_rate() argument
598 spll_calc_mult_div(struct pic32_sys_pll *pll, unsigned long rate, unsigned long parent_rate, u32 *mult_p, u32 *odiv_p) spll_calc_mult_div() argument
668 spll_clk_round_rate(struct clk_hw *hw, unsigned long rate, unsigned long *parent_rate) spll_clk_round_rate() argument
676 spll_clk_set_rate(struct clk_hw *hw, unsigned long rate, unsigned long parent_rate) spll_clk_set_rate() argument
783 sclk_round_rate(struct clk_hw *hw, unsigned long rate, unsigned long *parent_rate) sclk_round_rate() argument
789 sclk_set_rate(struct clk_hw *hw, unsigned long rate, unsigned long parent_rate) sclk_set_rate() argument
[all...]
/kernel/linux/linux-6.6/drivers/clk/microchip/
H A Dclk-core.c75 /* SoC specific clock needed during SPLL clock rate switch */
119 static unsigned long calc_best_divided_rate(unsigned long rate, in calc_best_divided_rate() argument
129 * Find best divider to produce closest of target divided rate. in calc_best_divided_rate()
131 div = parent_rate / rate; in calc_best_divided_rate()
137 if (abs(rate - divided_rate_down) < abs(rate - divided_rate)) in calc_best_divided_rate()
158 static long pbclk_round_rate(struct clk_hw *hw, unsigned long rate, in pbclk_round_rate() argument
161 return calc_best_divided_rate(rate, *parent_rate, in pbclk_round_rate()
165 static int pbclk_set_rate(struct clk_hw *hw, unsigned long rate, in pbclk_set_rate() argument
179 /* calculate clkdiv and best rate */ in pbclk_set_rate()
317 roclk_calc_div_trim(unsigned long rate, unsigned long parent_rate, u32 *rodiv_p, u32 *rotrim_p) roclk_calc_div_trim() argument
375 roclk_round_rate(struct clk_hw *hw, unsigned long rate, unsigned long *parent_rate) roclk_round_rate() argument
475 roclk_set_rate_and_parent(struct clk_hw *hw, unsigned long rate, unsigned long parent_rate, u8 index) roclk_set_rate_and_parent() argument
537 roclk_set_rate(struct clk_hw *hw, unsigned long rate, unsigned long parent_rate) roclk_set_rate() argument
598 spll_calc_mult_div(struct pic32_sys_pll *pll, unsigned long rate, unsigned long parent_rate, u32 *mult_p, u32 *odiv_p) spll_calc_mult_div() argument
668 spll_clk_round_rate(struct clk_hw *hw, unsigned long rate, unsigned long *parent_rate) spll_clk_round_rate() argument
676 spll_clk_set_rate(struct clk_hw *hw, unsigned long rate, unsigned long parent_rate) spll_clk_set_rate() argument
783 sclk_round_rate(struct clk_hw *hw, unsigned long rate, unsigned long *parent_rate) sclk_round_rate() argument
789 sclk_set_rate(struct clk_hw *hw, unsigned long rate, unsigned long parent_rate) sclk_set_rate() argument
[all...]

Completed in 11 milliseconds

12345678910>>...183