HomeSort by relevance Sort by last modified time
    Searched defs:threshold (Results 51 - 75 of 636) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/linux/netfilter/
xt_NFLOG.h 30 __u16 threshold; member in struct:xt_nflog_info
  /prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/linux/netfilter_bridge/
ebt_nflog.h 32 __u16 threshold; member in struct:ebt_nflog_info
  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/linux/netfilter/
xt_NFLOG.h 30 __u16 threshold; member in struct:xt_nflog_info
  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/linux/netfilter_bridge/
ebt_nflog.h 32 __u16 threshold; member in struct:ebt_nflog_info
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/linux/netfilter/
xt_NFLOG.h 30 __u16 threshold; member in struct:xt_nflog_info
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/linux/netfilter_bridge/
ebt_nflog.h 32 __u16 threshold; member in struct:ebt_nflog_info
  /system/tpm/tpm_manager/server/
tpm2_status_test.cc 110 int threshold; local
114 &threshold,
133 int threshold; local
137 &threshold,
141 EXPECT_EQ(threshold, lockout_threshold);
150 int threshold; local
154 &threshold,
  /art/tools/dexfuzz/src/dexfuzz/
Log.java 23 private static LogTag threshold = LogTag.ERROR; field in class:Log
37 threshold = tag;
41 return (threshold.ordinal() < LogTag.ERROR.ordinal());
65 if (tag.ordinal() >= threshold.ordinal()) {
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensorverification/
MeanVerificationTest.java 46 float[] threshold = {0.1f, 0.1f, 0.1f}; local
48 MeanVerification verification = getVerification(expected, threshold, values);
53 threshold = new float[]{0.6f, 0.6f, 0.6f};
55 verification = getVerification(expected, threshold, values);
60 threshold = new float[]{0.1f, 0.6f, 0.6f};
62 verification = getVerification(expected, threshold, values);
72 threshold = new float[]{0.6f, 0.1f, 0.6f};
74 verification = getVerification(expected, threshold, values);
83 threshold = new float[]{0.6f, 0.6f, 0.1f};
85 verification = getVerification(expected, threshold, values)
    [all...]
StandardDeviationVerificationTest.java 49 float[] threshold = {2, 2, 4}; local
50 runVerification(threshold, values, true, standardDeviations);
52 threshold = new float[]{1, 2, 4};
53 runVerification(threshold, values, false, standardDeviations);
55 threshold = new float[]{2, 1, 4};
56 runVerification(threshold, values, false, standardDeviations);
58 threshold = new float[]{2, 2, 3};
59 runVerification(threshold, values, false, standardDeviations);
62 private void runVerification(float[] threshold, float[][] values, boolean pass,
65 StandardDeviationVerification verification = getVerification(threshold, values)
    [all...]
MagnitudeVerification.java 38 // sensorType: {expected, threshold}
55 * @param threshold the threshold
57 public MagnitudeVerification(float expected, float threshold) {
59 mThreshold = threshold;
74 Float threshold = DEFAULTS.get(sensorType)[1]; local
75 return new MagnitudeVerification(expected, threshold);
MeanVerification.java 35 // sensorType: {expected, threshold}
49 * @param threshold the thresholds
51 public MeanVerification(float[] expected, float[] threshold) {
53 mThreshold = threshold;
68 float[] threshold = (float[]) DEFAULTS.get(sensorType)[1]; local
69 return new MeanVerification(expected, threshold);
151 // Uncalibrated gyroscope should be 0 for a static device but allow a bigger threshold
  /external/opencv3/modules/imgproc/perf/opencl/
perf_houghLines.cpp 37 int threshold = 250; local
52 OCL_TEST_CYCLE() cv::HoughLines(usrc, lines, rhoStep, thetaStep, threshold);
73 int threshold = 100; local
83 OCL_TEST_CYCLE() cv::HoughLinesP(usrc, lines, rhoStep, thetaStep, threshold, minLineLength, maxGap);
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
MessageTextStats.java 63 final int threshold = mmsConfig.getSmsToMmsTextThreshold(); local
64 mMessageLengthRequiresMms = threshold > 0 && mMessageCount > threshold;
79 * we know we should count threshold in double-byte, so divide the threshold by 2.
80 * In this way, we will count Korean text correctly with regard to the length threshold.
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
ThresholdingOutputStream.java 27 * stream type when the threshold is exceeded.
33 * NOTE: This implementation may trigger the event <em>before</em> the threshold
35 * cause the threshold to be exceeded.
49 * The threshold at which the event will be triggered.
51 private int threshold; field in class:ThresholdingOutputStream
61 * Whether or not the configured threshold has been exceeded.
71 * specified threshold.
73 * @param threshold The number of bytes at which to trigger an event.
75 public ThresholdingOutputStream(int threshold)
77 this.threshold = threshold
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
CalendarCache.java 31 threshold = (int)(arraySize * 0.75);
47 if (size >= threshold) {
119 private int threshold = (arraySize * 3) / 4; field in class:CalendarCache
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CalendarCache.java 29 threshold = (int)(arraySize * 0.75);
45 if (size >= threshold) {
117 private int threshold = (arraySize * 3) / 4; field in class:CalendarCache
  /external/opencv3/modules/cudaarithm/src/
element_operations.cpp 78 double cv::cuda::threshold(InputArray, OutputArray, double, double, int, Stream&) {throw_no_cuda(); return 0.0;} function in class:cv::cuda
  /external/opencv3/modules/cudafeatures2d/perf/
perf_features2d.cpp 62 const int threshold = GET_PARAM(1); local
68 cv::cuda::FastFeatureDetector::create(threshold, nonMaxSuppersion,
88 TEST_CYCLE() cv::FAST(img, cpu_keypoints, threshold, nonMaxSuppersion);
  /external/opencv3/modules/cudaobjdetect/src/cuda/
lbp.hpp 57 float threshold; member in struct:cv::cuda::device::lbp::Stage
  /external/opencv3/modules/imgproc/test/ocl/
test_houghlines.cpp 30 int threshold; local
40 threshold = GET_PARAM(2);
88 OCL_OFF(cv::HoughLines(src, dst, rhoStep, thetaStep, threshold));
89 OCL_ON(cv::HoughLines(usrc, udst, rhoStep, thetaStep, threshold));
100 OCL_OFF(cv::HoughLines(src, dst, rhoStep, thetaStep, threshold));
101 OCL_ON(cv::HoughLines(usrc, udst, rhoStep, thetaStep, threshold));
112 int threshold; local
122 threshold = GET_PARAM(0);
168 OCL_OFF(cv::HoughLinesP(src, dst, rhoStep, thetaStep, threshold, minLineLength, maxGap));
169 OCL_ON(cv::HoughLinesP(usrc, udst, rhoStep, thetaStep, threshold, minLineLength, maxGap))
    [all...]
  /external/webrtc/webrtc/modules/video_coding/
jitter_estimator_tests.cc 126 int threshold = regular_estimator_.GetJitterEstimate(0) / 2; local
136 if (regular_estimator_.GetJitterEstimate(0) < threshold) {
144 if (low_rate_estimator_.GetJitterEstimate(0) < threshold) {
  /hardware/bsp/intel/peripheral/libupm/src/pulsensor/
pulsensor.h 102 int threshold; /**< Threshold */ member in class:Pulsensor
  /device/google/dragon/crash_collector/
crash_collector.cc 100 const time_t threshold = dump_mtimes[kMaxNumReports - 1]; local
104 if (mtime <= threshold) {
  /external/autotest/client/tests/kvm/deps/
heartbeat_slu.py 45 def run_server(host, port, daemon, file, queue_size, threshold, drift):
51 timeout_interval = threshold * 2
57 drift = check_heartbeat(heartbeat, local_timestamp, threshold, check_drift)
61 if local_timestamp - prev_check_timestamp > threshold * 2.0:
62 check_for_timeouts(threshold, check_drift)
92 def check_heartbeat(heartbeat, local_timestamp, threshold, check_drift):
97 if delta > threshold:
112 def check_for_timeouts(threshold, check_drift):
118 if delta > threshold * 2:
132 [--threshold <heartbeat threshold>
149 threshold = 10 # seconds late till alert variable
    [all...]

Completed in 2693 milliseconds

1 23 4 5 6 7 8 91011>>