HomeSort by relevance Sort by last modified time
    Searched defs:rate (Results 1 - 25 of 252) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/pdfium/fxjs/xfa/
cjx_stipple.cpp 21 void CJX_Stipple::rate(CFXJSE_Value* pValue, function in class:CJX_Stipple
  /external/u-boot/arch/arm/mach-tegra/
emc.c 25 unsigned rate; local
30 rate = EMC_SDRAM_RATE_T20;
33 rate = EMC_SDRAM_RATE_T25;
36 return tegra_set_emc(gd->fdt_blob, rate);
  /external/u-boot/board/microchip/pic32mzda/
pic32mzda.c 19 ulong rate; local
34 rate = clk_get_rate(&clk);
35 printf("CPU Speed: %lu MHz\n", rate / 1000000);
  /external/u-boot/test/dm/
clk.c 16 ulong rate; local
40 rate = sandbox_clk_test_set_rate(dev_test, SANDBOX_CLK_TEST_ID_FIXED,
42 ut_assert(IS_ERR_VALUE(rate));
43 rate = sandbox_clk_test_get_rate(dev_test, SANDBOX_CLK_TEST_ID_FIXED);
44 ut_asserteq(1234, rate);
65 rate = sandbox_clk_test_set_rate(dev_test, SANDBOX_CLK_TEST_ID_SPI, 0);
66 ut_assert(IS_ERR_VALUE(rate));
67 rate = sandbox_clk_test_set_rate(dev_test, SANDBOX_CLK_TEST_ID_I2C, 0);
68 ut_assert(IS_ERR_VALUE(rate));
  /external/adhd/cras/examples/
cplay_buffer.c 23 const unsigned int rate = 48000; local
55 SND_PCM_FORMAT_S16_LE, rate, num_channels,
cplay.c 61 const unsigned int rate = 48000; local
85 put_samples, stream_error, SND_PCM_FORMAT_S16_LE, rate,
  /external/tensorflow/tensorflow/python/ops/distributions/
exponential.py 44 The Exponential distribution is parameterized by an event `rate` parameter.
55 where `rate = lambda` and `Z` is the normalizaing constant.
61 Exponential(rate) = Gamma(concentration=1., rate)
64 The Exponential distribution uses a `rate` parameter, or "inverse scale",
68 X ~ Exponential(rate=1)
69 Y = X / rate
83 rate,
87 """Construct Exponential distribution with parameter `rate`.
90 rate: Floating point tensor, equivalent to `1 / mean`. Must contain onl
123 def rate(self): member in class:Exponential
    [all...]
  /external/u-boot/arch/arm/mach-zynq/
clk.c 37 ulong rate; local
51 rate = clk_get_rate(&clk) / 1000000;
53 gd->bd->bi_ddr_freq = rate;
55 gd->bd->bi_arm_freq = rate;
85 unsigned long rate; local
92 rate = clk_get_rate(&clk);
96 if ((rate == (unsigned long)-ENOSYS) ||
97 (rate == (unsigned long)-ENXIO))
100 printf("%10s%20lu\n", name, rate);
  /external/u-boot/drivers/clk/at91/
clk-h32mx.c 23 ulong rate = gd->arch.mck_rate_hz; local
26 rate /= 2;
28 if (rate > H32MX_MAX_FREQ)
31 return rate;
  /external/u-boot/include/
lynxkdi.h 17 uint32_t rate; /* System frequency */ member in struct:lynxos_bootparms_t
  /external/adhd/cras/src/server/
rate_estimator.c 10 /* The max rate skew that considered reasonable */
41 struct rate_estimator *rate_estimator_create(unsigned int rate,
52 re->estimated_rate = rate;
68 void rate_estimator_reset_rate(struct rate_estimator *re, unsigned int rate)
70 re->estimated_rate = rate;
99 double rate = least_square_best_fit_slope(&re->lsq); local
100 if (fabs(re->estimated_rate - rate) < MAX_RATE_SKEW)
101 re->estimated_rate = rate * (1 - re->smooth_factor) +
  /external/autotest/client/cros/chameleon/
audio_widget_arc.py 25 rate=8000) variable in class:CrosInputWidgetARCHandler
43 rate: sampling rate.
69 rate: sampling rate.
  /external/libnl/python/netlink/route/qdisc/
htb.py 55 def rate(self): member in class:HTBClass
56 rate = capi.rtnl_htb_get_rate(self._class._rtnl_class)
57 return util.Rate(rate)
59 @rate.setter
60 def rate(self, value): member in class:HTBClass
67 return util.Rate(ceil)
123 ret = ' {t|prio} {t|rate}'
125 if self.rate != self.ceil:
  /external/ppp/pppd/plugins/pppoatm/
text2qos.c 30 unsigned int rate,fract; local
37 rate = strtoul(*text,&end,10);
47 if (rate > UINT_MAX/1000) return RATE_ERROR;
48 rate *= 1000;
63 rate += fract;
69 rate = (rate+(up ? 8*ATM_CELL_PAYLOAD-1 : 0))/8/
74 if (rate > INT_MAX) return RATE_ERROR;
76 return rate;
  /external/u-boot/arch/arm/mach-omap2/
pipe3-phy.h 21 unsigned long rate; member in struct:pipe3_dpll_map
  /external/u-boot/drivers/clk/
clk_sandbox.c 13 ulong rate[SANDBOX_CLK_ID_COUNT]; member in struct:sandbox_clk_priv
24 return priv->rate[clk->id];
27 static ulong sandbox_clk_set_rate(struct clk *clk, ulong rate)
35 if (!rate)
38 old_rate = priv->rate[clk->id];
39 priv->rate[clk->id] = rate;
95 return priv->rate[id];
  /external/iproute2/tc/
m_sample.c 24 fprintf(stderr, "\tSAMPLE_PARAMS := rate RATE group GROUP [trunc SIZE] [SAMPLE_INDEX]\n");
50 __u32 rate; local
66 if (matches(*argv, "rate") == 0) {
68 if (get_unsigned(&rate, *argv, 10) != 0) {
69 fprintf(stderr, "Illegal rate %s\n", *argv);
120 fprintf(stderr, "param \"rate\" not set\n");
128 addattr32(n, MAX_MSG, TCA_SAMPLE_RATE, rate);
158 fprintf(f, "sample rate 1/%d group %d",
q_choke.c 41 unsigned int rate = 0; local
57 if (get_rate(&rate, *argv)) {
104 if (!rate || !opt.limit) {
146 wlog = tc_red_eval_idle_damping(opt.Wlog, avpkt, rate, sbuf);
q_red.c 42 unsigned int rate = 0; local
87 if (get_rate(&rate, *argv)) {
124 if (!rate) {
125 get_rate(&rate, "10Mbit");
140 if ((parm = tc_red_eval_idle_damping(opt.Wlog, avpkt, rate, sbuf)) < 0) {
  /external/iw/
ibss.c 30 float rate; local
139 rate = strtod(value, &end);
140 rates[n_rates] = rate * 2;
144 rate*2 != rates[n_rates])
157 /* multicast rate */
158 if (argc > 1 && strcmp(argv[0], "mcast-rate") == 0) {
162 rate = strtod(argv[0], &end);
166 NLA_PUT_U32(msg, NL80211_ATTR_MCAST_RATE, (int)(rate * 10));
198 " [basic-rates <rate in Mbps,rate2,...>] [mcast-rate <rate in Mbps>]
    [all...]
  /external/linux-kselftest/tools/testing/selftests/drivers/net/mlxsw/
qos_mc_aware.sh 219 rate() function
230 local rate=$1; shift
234 if ((rate > min)); then
250 # Dips in performance might cause momentary ingress rate to drop below
253 # average ingress rate to somewhat mitigate this.
267 local ir=$(rate $u0 $u1 $interval)
268 local er=$(rate $t0 $t1 $interval)
270 if check_rate $ir $min_ingress "$what ingress rate"; then
293 check_err $? "Could not get high enough UC-only ingress rate"
304 check_err $? "Could not get high enough UC+MC ingress rate"
    [all...]
  /external/tensorflow/tensorflow/contrib/distributions/python/ops/
poisson.py 54 The Poisson distribution is parameterized by an event `rate` parameter.
65 where `rate = lambda` and `Z` is the normalizing constant.
78 rate=None,
86 rate: Floating point tensor, the rate parameter. `rate` must be positive.
87 Must specify exactly one of `rate` and `log_rate`.
88 log_rate: Floating point tensor, the log of the rate parameter.
89 Must specify exactly one of `rate` and `log_rate`.
101 ValueError: if none or both of `rate`, `log_rate` are specified
135 def rate(self): member in class:Poisson
    [all...]
  /external/u-boot/arch/arm/mach-imx/mx7ulp/
pcc.c 255 u32 reg, val, rate, frac, div; local
263 rate = scg_clk_get_rate(parent);
265 clk_debug("pcc_clock_get_rate: parent rate %u\n", rate);
276 * the rate won't exceed 2G
278 rate = rate * (frac + 1) / (div + 1);
281 clk_debug("pcc_clock_get_rate: rate %u\n", rate);
282 return rate;
    [all...]
  /external/u-boot/drivers/pwm/
exynos_pwm.c 24 uint div = 4, rate, rate_ns; local
37 rate = get_pwm_clk() / ((prescaler + 1) * (1 << div));
38 debug("%s: pwm_clk %lu, rate %u\n", __func__, get_pwm_clk(), rate);
41 rate_ns = 1000000000 / rate;
  /external/autotest/client/cros/audio/
audio_test_data.py 29 file_type, sample_format, channel, and rate.
34 rate: sampling rate.
68 channel=2, rate=48000)
108 rate_src = self.data_format['rate']
123 rate_dst=data_format['rate'],
164 file_type, sample_format, channel, and rate.
169 rate: sampling rate.
192 rate=data_format['rate']
226 rate=48000)) variable
239 rate=48000), variable
255 rate=48000), variable
271 rate=48000), variable
288 rate=48000), variable
301 rate=48000), variable
    [all...]

Completed in 1060 milliseconds

1 2 3 4 5 6 7 8 91011