Searched refs:estimator (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/content/browser/download/
H A Drate_estimator_unittest.cc15 RateEstimator estimator(TimeDelta::FromSeconds(1), 10u, now);
16 EXPECT_EQ(0u, estimator.GetCountPerSecond(now));
18 estimator.Increment(50u, now);
19 EXPECT_EQ(50u, estimator.GetCountPerSecond(now));
22 estimator.Increment(50, now);
23 EXPECT_EQ(100u, estimator.GetCountPerSecond(now));
27 EXPECT_EQ(25u, estimator.GetCountPerSecond(now));
28 estimator.Increment(60, now);
29 EXPECT_EQ(40u, estimator.GetCountPerSecond(now));
33 EXPECT_EQ(20u, estimator
[all...]
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/tools/
H A Dbwe_rtp.cc29 webrtc::RemoteBitrateEstimator** estimator,
48 // Setup the RTP header parser and the bitrate estimator.
51 if (estimator) {
55 *estimator = factory.Create(observer, clock, webrtc::kAimdControl,
62 *estimator = factory.Create(observer, clock, webrtc::kAimdControl,
23 ParseArgsAndSetupEstimator(int argc, char** argv, webrtc::Clock* clock, webrtc::RemoteBitrateObserver* observer, webrtc::test::RtpFileReader** rtp_reader, webrtc::RtpHeaderParser** parser, webrtc::RemoteBitrateEstimator** estimator, std::string* estimator_used) argument
H A Dbwe_rtp.h33 webrtc::RemoteBitrateEstimator** estimator,
H A Dbwe_rtp_play.cc50 webrtc::RemoteBitrateEstimator* estimator; local
56 &parser, &estimator, &estimator_used)) {
61 webrtc::scoped_ptr<webrtc::RemoteBitrateEstimator> rbe(estimator);
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
H A DTranslateLanguagePanel.java208 TextView estimator = (TextView) LayoutInflater.from(getContext()).inflate(
210 layout.addView(estimator);
212 estimator.setText(getStringForLanguage(i));
213 estimator.measure(spec, spec);
214 mMinimumWidth = Math.max(mMinimumWidth, estimator.getMeasuredWidth());
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/
H A Dremote_bitrate_estimators_test.cc25 BweTestConfig::EstimatorConfig EstimatorConfigs(Estimator estimator, argument
31 switch (estimator) {
49 Estimator estimator) {
52 EstimatorConfigs(estimator, 0));
48 MakeBweTestConfig(uint32_t sender_count, Estimator estimator) argument
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
H A Dbwe_test.h111 void GiveFeedbackToAffectedSenders(int flow_id, TestedEstimator* estimator);
H A Dbwe_test.cc66 // time once packet reaches the estimator.
280 TestedEstimator* estimator) {
290 if (estimator->CheckEstimate(&feedback) && !affected_senders.empty()) {
279 GiveFeedbackToAffectedSenders(int flow_id, TestedEstimator* estimator) argument
/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_channel_group.cc255 WrappingBitrateEstimator* estimator = local
257 estimator->SetConfig(config);
/external/chromium_org/ui/events/gesture_detection/
H A Dvelocity_tracker.cc359 Estimator estimator; local
360 if (GetEstimator(id, &estimator) && estimator.degree >= 1) {
361 *out_vx = estimator.xcoeff[1];
362 *out_vy = estimator.ycoeff[1];
/external/opencv/cv/src/
H A Dcvfundam.cpp616 CvHomographyEstimator estimator( MIN(count, 5) );
620 result = estimator.runLMeDS( M, m, &_H, tempMask, confidence );
622 result = estimator.runRANSAC( M, m, &_H, tempMask, ransacReprojThreshold, confidence );
624 result = estimator.runKernel( M, m, &_H ) > 0;
631 estimator.refine( M, m, &_H, 10 );
988 CvFMEstimator estimator( MIN(count, (method & 3) == CV_FM_7POINT ? 7 : 8) );
990 result = estimator.run7Point(m1, m2, &_F9x3);
992 result = estimator.run8Point(m1, m2, &_F3x3);
1001 result = estimator.runRANSAC(m1, m2, &_F3x3, tempMask, param1, param2 );
1003 result = estimator
[all...]
/external/chromium_org/media/cast/test/
H A Dsender.cc228 scoped_ptr<media::cast::ReceiverTimeOffsetEstimatorImpl> estimator) {
233 cast_environment->Logging()->RemoveRawEventSubscriber(estimator.get());
224 WriteStatsAndDestroySubscribers( const scoped_refptr<media::cast::CastEnvironment>& cast_environment, scoped_ptr<media::cast::StatsEventSubscriber> video_event_subscriber, scoped_ptr<media::cast::StatsEventSubscriber> audio_event_subscriber, scoped_ptr<media::cast::ReceiverTimeOffsetEstimatorImpl> estimator) argument
/external/deqp/modules/gles2/performance/
H A Des2pShaderOperatorTests.cpp423 const gls::LineParameters estimator = simpleLinearRegression(data); local
428 const float estY = estimator.offset + estimator.coefficient*data[i].x();
950 const SegmentedEstimator& estimator = estimators[progNdx];
985 log << TestLog::Float("Program" + progNdxStr + "WorkloadCostEstimate", "Workload cost estimate", "us / workload", QP_KEY_TAG_TIME, estimator.right.coefficient);
987 if (estimator.pivotX > -std::numeric_limits<float>::infinity())
988 log << TestLog::Message << "Note: the data points with x coordinate greater than or equal to " << estimator.pivotX
990 << TestLog::Message << "Note: the left line is estimated to be " << lineParamsString(estimator.left)
991 << " and the right line " << lineParamsString(estimator.right) << TestLog::EndMessage;
993 log << TestLog::Message << "Note: the data seem to form a single line: " << lineParamsString(estimator
[all...]
/external/deqp/modules/gles3/performance/
H A Des3pShaderOperatorTests.cpp423 const gls::LineParameters estimator = simpleLinearRegression(data); local
428 const float estY = estimator.offset + estimator.coefficient*data[i].x();
950 const SegmentedEstimator& estimator = estimators[progNdx];
985 log << TestLog::Float("Program" + progNdxStr + "WorkloadCostEstimate", "Workload cost estimate", "us / workload", QP_KEY_TAG_TIME, estimator.right.coefficient);
987 if (estimator.pivotX > -std::numeric_limits<float>::infinity())
988 log << TestLog::Message << "Note: the data points with x coordinate greater than or equal to " << estimator.pivotX
990 << TestLog::Message << "Note: the left line is estimated to be " << lineParamsString(estimator.left)
991 << " and the right line " << lineParamsString(estimator.right) << TestLog::EndMessage;
993 log << TestLog::Message << "Note: the data seem to form a single line: " << lineParamsString(estimator
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 474 milliseconds