Searched defs:rate (Results 51 - 75 of 197) sorted by relevance

12345678

/external/chromium_org/third_party/WebKit/Source/core/platform/
H A DPlatformSpeechSynthesisUtterance.h61 float rate() const { return m_rate; } function in class:WebCore::PlatformSpeechSynthesisUtterance
62 void setRate(float rate) { m_rate = std::max(std::min(10.0f, rate), 0.1f); } argument
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dbloom_test.cc118 // Count number of filters that significantly exceed the false positive rate
137 // Check false positive rate
138 double rate = FalsePositiveRate(); local
141 rate*100.0, length, static_cast<int>(FilterSize()));
143 ASSERT_LE(rate, 0.02); // Must not be over 2%
144 if (rate > 0.0125) mediocre_filters++; // Allowed, but not too often
/external/iproute2/tc/
H A Dtc_core.c59 unsigned tc_calc_xmittime(unsigned rate, unsigned size) argument
61 return tc_core_time2tick(TIME_UNITS_PER_SEC*((double)size/rate));
64 unsigned tc_calc_xmitsize(unsigned rate, unsigned ticks) argument
66 return ((double)rate*tc_core_tick2time(ticks))/TIME_UNITS_PER_SEC;
75 * before doing the rate table lookup, as this gives better precision
115 unsigned bps = r->rate;
H A Dq_hfsc.c54 "SC := [ [ umax BYTE ] dmax SEC ] rate BPS\n"
58 " rate : rate\n"
340 unsigned int umax = 0, dmax = 0, rate = 0; local
360 if (matches(*argv, "rate") == 0) {
362 if (get_rate(&rate, *argv) < 0) {
363 explain1("rate");
374 if (dmax != 0 && ceil(1.0 * umax * TIME_UNITS_PER_SEC / dmax) > rate) {
381 sc->m2 = rate;
385 * is at dmax - umax / rate
[all...]
H A Dq_netem.c42 " [ rate RATE [PACKETOVERHEAD] [CELLSIZE] [CELLOVERHEAD]]\n");
179 struct tc_netem_rate rate; local
187 memset(&rate, 0, sizeof(rate));
386 } else if (matches(*argv, "rate") == 0) {
389 if (get_rate(&rate.rate, *argv)) {
390 explain1("rate");
395 if (get_s32(&rate.packet_overhead, *argv, 0)) {
396 explain1("rate");
504 const struct tc_netem_rate *rate = NULL; local
[all...]
/external/libvpx/libvpx/nestegg/include/nestegg/
H A Dnestegg.h129 double rate; /**< Sampling rate in Hz. */ member in struct:__anon20530
/external/netperf/
H A Dnetcpu_perfstat.c43 idle. The rate at which this increments during a test is compared
125 rate[MAXTIMES], local
166 rate[i] = (float)0.0;
250 if (temp_rate > rate[i]) rate[i] = temp_rate;
252 fprintf(where,"\trate[%d] = %g\n",i,rate[i]);
255 if (local_maxrate < rate[i]) local_maxrate = rate[i];
H A Dnetcpu_pstat.c34 idle. The rate at which this increments during a test is compared
95 cpu rate to the calling routine. */
108 rate[MAXTIMES], local
139 rate[i] = 0.0;
201 if (temp_rate > rate[i]) rate[i] = temp_rate;
203 fprintf(where,"\trate[%d] = %g\n",i,rate[i]);
206 if (local_maxrate < rate[i]) local_maxrate = rate[i];
/external/srtp/test/
H A Drdbx_driver.c71 double rate; local
122 rate = rdbx_check_adds_per_second(1 << 18, 128);
123 printf("rdbx_check/replay_adds per second (ws=128): %e\n", rate);
124 rate = rdbx_check_adds_per_second(1 << 18, 1024);
125 printf("rdbx_check/replay_adds per second (ws=1024): %e\n", rate);
/external/tremolo/Tremolo/
H A Divorbiscodec.h54 long rate; member in struct:vorbis_info
60 implies a fixed rate bitstream
66 may also be set to give a nominal rate.
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dap_list.c44 int rate = (ap->supported_rates[i] & 0x7f) * 5; local
45 if (rate == 60 || rate == 90 || rate > 110)
/external/wpa_supplicant_8/src/ap/
H A Dap_list.c44 int rate = (ap->supported_rates[i] & 0x7f) * 5; local
45 if (rate == 60 || rate == 90 || rate > 110)
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dap_list.c44 int rate = (ap->supported_rates[i] & 0x7f) * 5; local
45 if (rate == 60 || rate == 90 || rate > 110)
/external/chromium/chrome/browser/autofill/
H A Dautofill_download.cc173 void AutofillDownloadManager::SetPositiveUploadRate(double rate) { argument
174 if (rate == positive_upload_rate_)
176 positive_upload_rate_ = rate;
177 DCHECK_GE(rate, 0.0);
178 DCHECK_LE(rate, 1.0);
182 preferences->SetDouble(prefs::kAutofillPositiveUploadRate, rate);
186 void AutofillDownloadManager::SetNegativeUploadRate(double rate) { argument
187 if (rate == negative_upload_rate_)
189 negative_upload_rate_ = rate;
190 DCHECK_GE(rate, 0.
[all...]
/external/chromium/chrome/browser/chromeos/input_method/
H A Dxkeyboard.cc178 // Sets the auto-repeat rate of the keyboard, initial delay in ms, and repeat
181 bool SetAutoRepeatRate(const AutoRepeatRate& rate) { argument
188 DLOG(INFO) << "Set auto-repeat rate to: "
189 << rate.initial_delay_in_ms << " ms delay, "
190 << rate.repeat_interval_in_ms << " ms interval";
192 rate.initial_delay_in_ms,
193 rate.repeat_interval_in_ms) != True) {
194 LOG(ERROR) << "Failed to set auto-repeat rate";
435 bool SetAutoRepeatRate(const AutoRepeatRate& rate) { argument
436 return XKeyboard::GetInstance()->SetAutoRepeatRate(rate);
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_tts_api.h24 // will be empty strings, and rate, pitch, and volume will be -1.0.
34 double rate,
86 double rate() { return rate_; } function in class:Utterance
/external/chromium/chrome/browser/net/
H A Dpredictor_unittest.cc391 double rate; local
393 motivation_url, subresource_url, recovered_referral_list, &rate));
394 EXPECT_EQ(rate, kUseRate);
434 double rate; local
437 &rate));
438 EXPECT_SIMILAR(rate, kRateIcon);
441 motivation_url, img_subresource_url, recovered_referral_list, &rate));
442 EXPECT_SIMILAR(rate, kRateImg);
451 motivation_url, icon_subresource_url, recovered_referral_list, &rate));
452 EXPECT_SIMILAR(rate, kRateIco
[all...]
/external/chromium_org/chrome/browser/net/
H A Dpredictor_unittest.cc378 double rate; local
380 motivation_url, subresource_url, recovered_referral_list, &rate));
381 EXPECT_EQ(rate, kUseRate);
495 double rate; local
498 &rate));
499 EXPECT_SIMILAR(rate, kRateIcon);
502 motivation_url, img_subresource_url, recovered_referral_list, &rate));
503 EXPECT_SIMILAR(rate, kRateImg);
512 motivation_url, icon_subresource_url, recovered_referral_list, &rate));
513 EXPECT_SIMILAR(rate, kRateIco
[all...]
/external/chromium_org/chrome/browser/speech/extension_api/
H A Dtts_extension_api.cc176 double rate = 1.0; local
179 options->GetDouble(constants::kRateKey, &rate));
180 if (rate < 0.1 || rate > 10.0) {
255 continuous_params.rate = rate;
/external/chromium_org/chrome/browser/speech/
H A Dtts_linux.cc165 float rate = params.rate > 3 ? 3 : params.rate; local
166 rate = params.rate < 0.334 ? 0.334 : rate;
180 libspeechd_loader_.spd_set_voice_rate(conn_, 100 * log10(rate) / log10(3));
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_download.cc167 void AutofillDownloadManager::SetPositiveUploadRate(double rate) { argument
168 if (rate == positive_upload_rate_)
170 positive_upload_rate_ = rate;
171 DCHECK_GE(rate, 0.0);
172 DCHECK_LE(rate, 1.0);
174 preferences->SetDouble(prefs::kAutofillPositiveUploadRate, rate);
177 void AutofillDownloadManager::SetNegativeUploadRate(double rate) { argument
178 if (rate == negative_upload_rate_)
180 negative_upload_rate_ = rate;
181 DCHECK_GE(rate, 0.
[all...]
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
H A DDeviceMotionAndOrientationTest.java294 public boolean registerListener(SensorEventListener listener, int sensorType, int rate, argument
/external/chromium_org/content/renderer/media/
H A Dwebmediaplayer_ms.cc191 void WebMediaPlayerMS::setRate(double rate) { argument
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dpage_heap.cc329 const double rate = FLAGS_tcmalloc_release_rate; local
330 if (rate <= 1e-6) {
331 // Tiny release rate means that releasing is disabled.
345 const double mult = 1000.0 / rate;
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dpage_heap.cc268 const double rate = FLAGS_tcmalloc_release_rate; local
269 if (rate <= 1e-6) {
270 // Tiny release rate means that releasing is disabled.
284 const double mult = 1000.0 / rate;

Completed in 602 milliseconds

12345678