/external/webrtc/webrtc/modules/remote_bitrate_estimator/ |
overuse_detector.cc | 61 threshold_(12.5), 88 BWE_TEST_LOGGING_PLOT(1, "threshold", now_ms, threshold_); 89 if (T > threshold_) { 107 } else if (T < -threshold_) { 129 if (fabs(modified_offset) > threshold_ + kMaxAdaptOffsetMs) { 136 const double k = fabs(modified_offset) < threshold_ ? k_down_ : k_up_; 137 threshold_ += 138 k * (fabs(modified_offset) - threshold_) * (now_ms - last_update_ms_); 142 threshold_ = std::min(std::max(threshold_, kMinThreshold), kMaxThreshold) [all...] |
overuse_detector.h | 55 double threshold_; member in class:webrtc::OveruseDetector
|
/external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/ |
decision_node_evaluator.cc | 56 threshold_ = test.threshold().float_value(); 65 return val <= threshold_ ? left_child_id_ : right_child_id_; 67 return val < threshold_ ? left_child_id_ : right_child_id_; 69 return val >= threshold_ ? left_child_id_ : right_child_id_; 71 return val > threshold_ ? left_child_id_ : right_child_id_; 89 threshold_ = test.threshold().float_value(); 100 if (val <= threshold_) {
|
decision_node_evaluator.h | 57 float threshold_; member in class:tensorflow::tensorforest::InequalityDecisionNodeEvaluator 74 float threshold_; member in class:tensorflow::tensorforest::ObliqueInequalityDecisionNodeEvaluator
|
/external/libaom/libaom/test/ |
hbd_metrics_test.cc | 133 EXPECT_LE(fabs(lbd_db - hbd_db), threshold_); 147 EXPECT_LE(fabs(lbd_db - hbd_db), threshold_); 161 EXPECT_LE(fabs(lbd_db - hbd_db), threshold_); 171 double threshold_; member in class:__anon26753::HBDMetricsTestBase 186 threshold_ = GET_PARAM(4);
|
/external/ImageMagick/Magick++/lib/Magick++/ |
Image.h | 651 void blackThreshold(const std::string &threshold_); 653 const std::string &threshold_); [all...] |
STL.h | 1172 thresholdImage( const double threshold_ ); [all...] |
/external/ImageMagick/Magick++/lib/ |
Image.cpp | 4638 BilevelImage(image(),threshold_,exceptionInfo); local [all...] |
STL.cpp | 1086 Magick::thresholdImage::thresholdImage( const double threshold_ ) 1087 : _threshold( threshold_ ) [all...] |
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
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_; member in struct:Eigen::__anon21692::MemcpyTriggerForSlicing [all...] |
/external/google-breakpad/src/testing/test/ |
gmock-matchers_test.cc | 2280 int threshold_; member in class:testing::gmock_matchers_test::IsGreaterThan [all...] |
/external/googletest/googlemock/test/ |
gmock-matchers_test.cc | 2903 int threshold_; member in class:testing::gmock_matchers_test::__anon22838::IsGreaterThan [all...] |