Home
last modified time | relevance | path

Searched refs:threshold_ (Results 1 – 14 of 14) sorted by relevance

/external/webrtc/modules/remote_bitrate_estimator/
Doveruse_detector.cc68 threshold_(12.5), in OveruseDetector()
93 BWE_TEST_LOGGING_PLOT(1, "threshold", now_ms, threshold_); in Detect()
94 if (T > threshold_) { in Detect()
112 } else if (T < -threshold_) { in Detect()
135 if (fabs(modified_offset) > threshold_ + kMaxAdaptOffsetMs) { in UpdateThreshold()
142 const double k = fabs(modified_offset) < threshold_ ? k_down_ : k_up_; in UpdateThreshold()
145 threshold_ += k * (fabs(modified_offset) - threshold_) * time_delta_ms; in UpdateThreshold()
146 threshold_ = rtc::SafeClamp(threshold_, 6.f, 600.f); in UpdateThreshold()
Doveruse_detector.h51 double threshold_; variable
/external/webrtc/modules/congestion_controller/goog_cc/
Dtrendline_estimator.cc176 threshold_(12.5), in TrendlineEstimator()
281 BWE_TEST_LOGGING_PLOT(1, "threshold", now_ms, threshold_); in Detect()
282 if (modified_trend > threshold_) { in Detect()
300 } else if (modified_trend < -threshold_) { in Detect()
318 if (fabs(modified_trend) > threshold_ + kMaxAdaptOffsetMs) { in UpdateThreshold()
325 const double k = fabs(modified_trend) < threshold_ ? k_down_ : k_up_; in UpdateThreshold()
328 threshold_ += k * (fabs(modified_trend) - threshold_) * time_delta_ms; in UpdateThreshold()
329 threshold_ = rtc::SafeClamp(threshold_, 6.f, 600.f); in UpdateThreshold()
Dtrendline_estimator.h113 double threshold_; variable
/external/libaom/libaom/test/
Dhbd_metrics_test.cc134 EXPECT_LE(fabs(lbd_db - hbd_db), threshold_); in RunAccuracyCheck()
148 EXPECT_LE(fabs(lbd_db - hbd_db), threshold_); in RunAccuracyCheck()
162 EXPECT_LE(fabs(lbd_db - hbd_db), threshold_); in RunAccuracyCheck()
172 double threshold_; member in __anone8bd503d0111::HBDMetricsTestBase
187 threshold_ = GET_PARAM(4); in SetUp()
/external/ImageMagick/Magick++/lib/Magick++/
DImage.h651 void blackThreshold(const std::string &threshold_);
653 const std::string &threshold_);
836 void deskew(const double threshold_);
1005 const size_t threshold_=40);
1291 const double threshold_);
1293 const double sigma_,const double threshold_);
1302 void sepiaTone(const double threshold_);
1403 void threshold(const double threshold_);
1457 const double amount_,const double threshold_);
1459 const double sigma_,const double amount_,const double threshold_);
[all …]
DSTL.h1172 thresholdImage( const double threshold_ );
/external/vulkan-validation-layers/layers/
Dsparse_containers.h99 : range_min_(start), range_max_(end), threshold_((end - start) / kConversionThreshold) { in SparseVector()
326 const IndexType threshold_; // exclusive variable
351 if (IsSparse() && (sparse_->size() > threshold_)) { in SparseToDenseConversion()
/external/ImageMagick/Magick++/lib/
DImage.cpp2064 void Magick::Image::blackThreshold(const std::string &threshold_) in blackThreshold() argument
2068 BlackThresholdImage(image(),threshold_.c_str(),exceptionInfo); in blackThreshold()
2073 const std::string &threshold_) in blackThresholdChannel() argument
2078 BlackThresholdImage(image(),threshold_.c_str(),exceptionInfo); in blackThresholdChannel()
2743 void Magick::Image::deskew(const double threshold_) in deskew() argument
2749 newImage=DeskewImage(constImage(),threshold_,exceptionInfo); in deskew()
3333 const size_t threshold_) in houghLine() argument
3339 newImage=HoughLineImage(constImage(),width_,height_,threshold_, in houghLine()
4302 const double threshold_) in selectiveBlur() argument
4308 newImage=SelectiveBlurImage(constImage(),radius_,sigma_,threshold_, in selectiveBlur()
[all …]
DSTL.cpp1086 Magick::thresholdImage::thresholdImage( const double threshold_ ) in thresholdImage() argument
1087 : _threshold( threshold_ ) in thresholdImage()
/external/tensorflow/tensorflow/core/kernels/image/
Dnon_max_suppression_op.cu.cc365 float threshold_; member
367 : threshold_(threshold) {} in GreaterThanCubOp()
369 return (val > threshold_); in operator ()()
/external/webrtc/modules/congestion_controller/goog_cc/test/
Dgoog_cc_printer.cc105 Log("trendline_offset_threshold", [=] { return trend()->threshold_; }), in CreateLoggers()
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorMorphing.h287 …EIGEN_DEVICE_FUNC MemcpyTriggerForSlicing(const Device& device) : threshold_(2 * device.numThreads…
288 EIGEN_DEVICE_FUNC bool operator ()(Index val) const { return val > threshold_; }
291 Index threshold_;
/external/googletest/googlemock/test/
Dgmock-matchers_test.cc2921 explicit IsGreaterThan(int threshold) : threshold_(threshold) {} in TEST()
2923 bool operator()(int n) const { return n > threshold_; } in TEST()
2926 int threshold_; in TEST() member in testing::gmock_matchers_test::__anond473036a0111::IsGreaterThan