/external/webrtc/webrtc/modules/remote_bitrate_estimator/ |
D | overuse_detector.cc | 61 threshold_(12.5), in OveruseDetector() 88 BWE_TEST_LOGGING_PLOT(1, "threshold", now_ms, threshold_); in Detect() 89 if (T > threshold_) { in Detect() 107 } else if (T < -threshold_) { in Detect() 129 if (fabs(modified_offset) > threshold_ + kMaxAdaptOffsetMs) { in UpdateThreshold() 136 const double k = fabs(modified_offset) < threshold_ ? k_down_ : k_up_; in UpdateThreshold() 137 threshold_ += in UpdateThreshold() 138 k * (fabs(modified_offset) - threshold_) * (now_ms - last_update_ms_); in UpdateThreshold() 142 threshold_ = std::min(std::max(threshold_, kMinThreshold), kMaxThreshold); in UpdateThreshold()
|
D | overuse_detector.h | 55 double threshold_; variable
|
/external/opencv3/modules/cudaimgproc/src/ |
D | hough_lines.cpp | 74 rho_(rho), theta_(theta), threshold_(threshold), doSort_(doSort), maxLines_(maxLines) in HoughLinesDetectorImpl() 87 void setThreshold(int threshold) { threshold_ = threshold; } in setThreshold() 88 int getThreshold() const { return threshold_; } in getThreshold() 101 << "threshold" << threshold_ in write() 111 threshold_ = (int)fn["threshold"]; in read() 119 int threshold_; member in __anon32ecabc50111::HoughLinesDetectorImpl 164 …accum_, result_.ptr<float2>(0), result_.ptr<int>(1), maxLines_, rho_, theta_, threshold_, doSort_); in detect()
|
/external/opencv3/modules/cudafeatures2d/src/ |
D | fast.cpp | 75 virtual void setThreshold(int threshold) { threshold_ = threshold; } in setThreshold() 76 virtual int getThreshold() const { return threshold_; } in getThreshold() 88 int threshold_; member in __anond6def0a20111::FAST_Impl 94 threshold_(threshold), nonmaxSuppression_(nonmaxSuppression), max_npoints_(max_npoints) in FAST_Impl() 134 …calcKeypoints_gpu(img, mask, kpLoc.ptr<short2>(), max_npoints_, score, threshold_, StreamAccessor:… in detectAsync()
|
/external/opencv3/modules/features2d/src/ |
D | kaze.cpp | 78 void setThreshold(double threshold_) { threshold = (float)threshold_; } in setThreshold() argument
|
D | akaze.cpp | 89 void setThreshold(double threshold_) { threshold = (float)threshold_; } in setThreshold() argument
|
D | fast.cpp | 410 void setThreshold(int threshold_) { threshold = threshold_; } in setThreshold() argument
|
D | brisk.cpp | 864 BriskScaleSpace::getKeypoints(const int threshold_, std::vector<cv::KeyPoint>& keypoints) in getKeypoints() argument 871 int safeThreshold_ = (int)(threshold_ * safetyFactor_); in getKeypoints() 975 if (score > float(threshold_)) in getKeypoints()
|
D | agast.cpp | 7493 void setThreshold(int threshold_) { threshold = threshold_; } in setThreshold() argument
|
/external/google-breakpad/src/testing/test/ |
D | gmock-matchers_test.cc | 2275 explicit IsGreaterThan(int threshold) : threshold_(threshold) {} in IsGreaterThan() 2277 bool operator()(int n) const { return n > threshold_; } in operator ()() 2280 int threshold_; member in testing::gmock_matchers_test::IsGreaterThan
|
/external/gmock/test/ |
D | gmock-matchers_test.cc | 2384 explicit IsGreaterThan(int threshold) : threshold_(threshold) {} in IsGreaterThan() 2386 bool operator()(int n) const { return n > threshold_; } in operator ()() 2389 int threshold_; member in testing::gmock_matchers_test::IsGreaterThan
|