Searched refs:rate0 (Results 1 – 5 of 5) sorted by relevance
| /OK3568_Linux_fs/buildroot/dl/sox/git/test/ |
| H A D | ltest.pl | 35 my ($rate0,$rate1)=(8000,22050); # sample rates 69 print("# Testing $sox -c1 -r$rate0 i0.xx.$t j0.xx.$t $effect\n"); 71 print("# Testing $sox -c1 -r$rate0 i*.$t -r$rate1 u*.$t $effect\n"); 73 print("# then back down to $rate0\n"); 81 my $nyq = ($rate0<=$rate1)? 1.0:($rate1/$rate0); 90 qx{$sox -c1 -r$rate0 i$s.$t -r$rate0 o$s.$t $effect} ; 91 @mod = grep {/v2max/} qx{$model -f$s -e$env $rate0 o$s.$t 2>&1}; 93 qx{$sox -c1 -r$rate0 i$s.$t -r$rate1 u$s.$t $effect 2>/dev/null}; 95 qx{$sox -c1 -r$rate1 u$s.$t -r$rate0 o$s.$t $effect 2>/dev/null}; 96 @mod = grep {/v2max/} qx{$model -f$s -e$env $rate0:$rate0 o$s.$t 2>&1}; [all …]
|
| H A D | model.c | 217 int rate0, rate1; in main() local 268 rate0 = rate1 = strtol(p0,&p,10); in main() 281 if (rate0<=0 || rate1<=0) { in main() 288 Factor = (double)rate1 / (double)rate0; in main()
|
| H A D | README | 53 I hope. just change the ($rate0,$rate1)=(8000,22050) line near the top. 81 step 2: let N = 16000*(rate1/rate0) be the number of samples at output rate
|
| /OK3568_Linux_fs/kernel/drivers/clk/rockchip/ |
| H A D | clk-rv1106.c | 994 unsigned int rate0, rate1, delta, length_ori, length, step, val, i = 0; in _cru_pvtpll_calibrate() local 996 rate0 = readl_relaxed(rv1106_cru_base + count_offset); in _cru_pvtpll_calibrate() 997 if (rate0 < target_rate) in _cru_pvtpll_calibrate() 1000 if ((rate0 - target_rate) < (target_rate >> 5)) in _cru_pvtpll_calibrate() 1010 if ((rate1 < target_rate) || (rate1 >= rate0)) in _cru_pvtpll_calibrate() 1015 step = rate0 - rate1; in _cru_pvtpll_calibrate() 1021 rate0 = readl_relaxed(rv1106_cru_base + count_offset); in _cru_pvtpll_calibrate() 1023 while (abs(rate0 - target_rate) >= (target_rate >> 5)) { in _cru_pvtpll_calibrate() 1026 if (rate0 > target_rate) in _cru_pvtpll_calibrate() 1035 rate0 = readl_relaxed(rv1106_cru_base + count_offset); in _cru_pvtpll_calibrate() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/soc/rockchip/ |
| H A D | rockchip_opp_select.c | 720 unsigned int rate0, rate1, delta; in rockchip_pvtpll_get_rate() local 724 regmap_read(info->grf, info->pvtpll_avg_offset, &rate0); in rockchip_pvtpll_get_rate() 729 delta = abs(rate1 - rate0); in rockchip_pvtpll_get_rate() 730 rate0 = rate1; in rockchip_pvtpll_get_rate() 740 return rate0 * 1000000; in rockchip_pvtpll_get_rate()
|