/external/webrtc/modules/remote_bitrate_estimator/ |
D | overuse_detector.cc | 68 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()
|
D | overuse_detector.h | 51 double threshold_; variable
|
/external/webrtc/modules/congestion_controller/goog_cc/ |
D | trendline_estimator.cc | 176 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()
|
D | trendline_estimator.h | 113 double threshold_; variable
|
/external/libaom/libaom/test/ |
D | hbd_metrics_test.cc | 134 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 __anon8c368e440111::HBDMetricsTestBase 187 threshold_ = GET_PARAM(4); in SetUp()
|
/external/ImageMagick/Magick++/lib/Magick++/ |
D | Image.h | 651 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 …]
|
D | STL.h | 1172 thresholdImage( const double threshold_ );
|
/external/vulkan-validation-layers/layers/ |
D | sparse_containers.h | 99 : 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/ |
D | Image.cpp | 2064 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 …]
|
D | STL.cpp | 1086 Magick::thresholdImage::thresholdImage( const double threshold_ ) in thresholdImage() argument 1087 : _threshold( threshold_ ) in thresholdImage()
|
/external/tensorflow/tensorflow/core/kernels/image/ |
D | non_max_suppression_op.cu.cc | 365 float threshold_; member 367 : threshold_(threshold) {} in GreaterThanCubOp() 369 return (val > threshold_); in operator ()()
|
/external/webrtc/modules/congestion_controller/goog_cc/test/ |
D | goog_cc_printer.cc | 105 Log("trendline_offset_threshold", [=] { return trend()->threshold_; }), in CreateLoggers()
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorMorphing.h | 287 …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/ |
D | gmock-matchers_test.cc | 2921 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::__anon01910f110111::IsGreaterThan
|