HomeSort by relevance Sort by last modified time
    Searched refs:estimator (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/content/browser/download/
rate_estimator_unittest.cc 15 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.GetCountPerSecond(now))
    [all...]
  /external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/tools/
bwe_rtp.cc 32 webrtc::RemoteBitrateEstimator** estimator,
50 // Setup the RTP header parser and the bitrate estimator.
53 if (estimator) {
57 *estimator = factory.Create(observer, clock, webrtc::kAimdControl,
64 *estimator = factory.Create(observer, clock, webrtc::kAimdControl,
bwe_rtp.h 33 webrtc::RemoteBitrateEstimator** estimator,
bwe_rtp_play.cc 53 webrtc::RemoteBitrateEstimator* estimator; local
59 &parser, &estimator, &estimator_used)) {
64 webrtc::scoped_ptr<webrtc::RemoteBitrateEstimator> rbe(estimator);
110 printf("Estimator used: %s\n", estimator_used.c_str());
  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 53 bool getEstimator(int32_t id, VelocityTracker::Estimator* outEstimator);
134 bool VelocityTrackerState::getEstimator(int32_t id, VelocityTracker::Estimator* outEstimator) {
197 VelocityTracker::Estimator estimator; local
198 bool result = state->getEstimator(id, &estimator);
205 env->SetFloatArrayRegion(xCoeffObj, 0, VelocityTracker::Estimator::MAX_DEGREE + 1,
206 estimator.xCoeff);
207 env->SetFloatArrayRegion(yCoeffObj, 0, VelocityTracker::Estimator::MAX_DEGREE + 1,
208 estimator.yCoeff);
209 env->SetIntField(outEstimatorObj, gEstimatorClassInfo.degree, estimator.degree)
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
TranslateLanguagePanel.java 208 TextView estimator = (TextView) LayoutInflater.from(getContext()).inflate( local
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/
remote_bitrate_estimators_test.cc 23 enum Estimator { kAbsSendTime, kTransmissionOffset };
25 BweTestConfig::EstimatorConfig EstimatorConfigs(Estimator estimator,
31 switch (estimator) {
49 Estimator estimator) {
52 EstimatorConfigs(estimator, 0));
  /frameworks/native/libs/input/
VelocityTracker.cpp 251 Estimator estimator; local
252 getEstimator(id, &estimator);
254 "estimator (degree=%d, xCoeff=%s, yCoeff=%s, confidence=%f)",
256 int(estimator.degree),
257 vectorToString(estimator.xCoeff, estimator.degree + 1).string(),
258 vectorToString(estimator.yCoeff, estimator.degree + 1).string(),
259 estimator.confidence)
336 Estimator estimator; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
bwe_test.h 111 void GiveFeedbackToAffectedSenders(int flow_id, TestedEstimator* estimator);
bwe_test.cc 66 // time once packet reaches the estimator.
280 TestedEstimator* estimator) {
290 if (estimator->CheckEstimate(&feedback) && !affected_senders.empty()) {
  /external/chromium_org/third_party/webrtc/video_engine/
vie_channel_group.cc 258 WrappingBitrateEstimator* estimator = local
260 estimator->SetConfig(config);
  /external/chromium_org/ui/events/gesture_detection/
velocity_tracker.cc 27 virtual bool GetEstimator(uint32_t id, Estimator* out_estimator) const = 0;
47 struct Estimator {
50 // Estimator time base.
113 // Degree must be no greater than Estimator::MAX_DEGREE.
124 Estimator* out_estimator) const OVERRIDE;
163 Estimator* out_estimator) const OVERRIDE;
187 void PopulateEstimator(const State& state, Estimator* out_estimator) const;
346 Estimator estimator; local
347 if (GetEstimator(id, &estimator) && estimator.degree >= 1)
    [all...]
  /external/opencv/cv/src/
cvfundam.cpp 616 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.runLMeDS(m1, m2, &_F3x3, tempMask, param2 )
    [all...]
  /external/deqp/modules/gles2/performance/
es2pShaderOperatorTests.cpp 423 const gls::LineParameters estimator = simpleLinearRegression(data); local
428 const float estY = estimator.offset + estimator.coefficient*data[i].x();
    [all...]
  /external/deqp/modules/gles3/performance/
es3pShaderOperatorTests.cpp 423 const gls::LineParameters estimator = simpleLinearRegression(data); local
428 const float estY = estimator.offset + estimator.coefficient*data[i].x();
    [all...]
  /external/chromium_org/media/cast/test/
sender.cc 848 scoped_ptr<media::cast::ReceiverTimeOffsetEstimatorImpl> estimator) {
853 cast_environment->Logging()->RemoveRawEventSubscriber(estimator.get());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 

Completed in 285 milliseconds