HomeSort by relevance Sort by last modified time
    Searched refs:threshold (Results 1 - 25 of 1166) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libpng/tests/
pngvalid-gamma-threshold 2 exec ./pngvalid --strict --gamma-threshold
  /external/valgrind/drd/tests/
annotate_rwlock_hg.stderr.exp 1 Total error count is below threshold.
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
Barrier.java 36 protected int threshold; field in class:Barrier
40 threshold = t;
49 if ( count==threshold ) {
50 // notify blocked threads that threshold has been reached
54 else while ( count<threshold ) {
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/classifier/
ProximityEvaluator.java 22 float threshold = 0.1f; local
23 if (value >= threshold) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
ProximityEvaluator.java 22 float threshold = 0.1f; local
24 threshold = 1.0f;
26 if (value >= threshold) evaluation += 2.0;
  /cts/tests/tests/uirendering/src/android/uirendering/cts/util/
CompareUtils.java 9 public static boolean verifyPixelWithThreshold(int color, int expectedColor, int threshold) {
13 return diff <= threshold;
17 * @param threshold Per channel differences for R / G / B channel against the average of these 3
21 public static boolean verifyPixelGrayScale(int color, int threshold) {
24 return Math.abs(Color.red(color) - average) <= threshold
25 && Math.abs(Color.green(color) - average) <= threshold
26 && Math.abs(Color.blue(color) - average) <= threshold;
  /cts/tests/sensor/src/android/hardware/cts/helpers/sensorverification/
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...]
  /prebuilts/jdk/jdk8/darwin-x86/sample/scripting/scriptpad/src/scripts/
memmonitor.js 41 function memoryChecker(memoryBean, threshold, interval) {
48 if (usage > threshold) {
49 alert("Hey! heap usage threshold exceeded!");
62 // show threshold box with default of 50 MB
63 var threshold = prompt("Threshold (mb)", 50);
71 memoryChecker.future(memoryBean, threshold, interval);
  /prebuilts/jdk/jdk8/linux-x86/sample/scripting/scriptpad/src/scripts/
memmonitor.js 41 function memoryChecker(memoryBean, threshold, interval) {
48 if (usage > threshold) {
49 alert("Hey! heap usage threshold exceeded!");
62 // show threshold box with default of 50 MB
63 var threshold = prompt("Threshold (mb)", 50);
71 memoryChecker.future(memoryBean, threshold, interval);
  /system/tpm/tpm_manager/server/
tpm_status.h 35 int* threshold,
mock_tpm_status.cc 26 int* threshold,
30 *threshold = 10;
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAutoCompleteTextView.java 19 private int threshold = 2; field in class:ShadowAutoCompleteTextView
34 return threshold;
38 public void setThreshold(int threshold) {
39 if (threshold <= 0) {
40 threshold = 1;
42 this.threshold = 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/lisa/tools/analysis/
run_binder_transaction_analysis.py 24 def run_queue_analysis(trace, threshold):
32 :param threshold: plot transactions taken longer than threshold
33 :type threshold: int
39 trace.analysis.binder_transaction.plot_tasks(df, threshold, "__comm_x",
44 def run_buffer_analysis(trace, threshold):
51 :param threshold: plot buffers larger than threshold
52 :type threshold: int
58 trace.analysis.binder_transaction.plot_tasks(df, threshold,
    [all...]
  /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()) {
  /external/deqp/framework/common/
tcuBilinearImageCompare.hpp 35 bool bilinearCompare (const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const PixelBufferAccess& errorMask, const RGBA threshold);
tcuImageCompare.hpp 47 bool pixelThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const Surface& reference, const Surface& result, const RGBA& threshold, CompareLogMode logMode);
48 bool fuzzyCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const Surface& reference, const Surface& result, float threshold, CompareLogMode logMode);
51 bool fuzzyCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, float threshold, CompareLogMode logMode);
52 bool floatUlpThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, CompareLogMode logMode);
53 bool floatThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const Vec4& threshold, CompareLogMode logMode);
54 bool floatThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const Vec4& reference, const ConstPixelBufferAccess& result, const Vec4& threshold, CompareLogMode logMode);
55 bool intThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, CompareLogMode logMode);
56 bool intThresholdPositionDeviationCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, const tcu::IVec3& maxPositionDeviation, bool acceptOutOfBoundsAsAnyValue, CompareLogMode logMode);
57 bool intThresholdPositionDeviationErrorThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, const tcu::IVec3& maxPositionDeviation, bool acceptOutOfBoundsAsAnyValue, int maxAllowedFailingPixels, CompareLogMode logMode);
59 bool bilinearCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const RGBA threshold, CompareLogMode logMode)
    [all...]
  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
AppenderSkeleton.java 31 public void setThreshold(Priority threshold) {
  /external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/
params.cc 42 if (depth >= param.threshold().threshold()) {
43 return param.threshold().on_value();
45 return param.threshold().off_value();
  /frameworks/av/media/libaaudio/src/fifo/
FifoControllerBase.cpp 26 FifoControllerBase::FifoControllerBase(fifo_frames_t capacity, fifo_frames_t threshold)
28 , mThreshold(threshold)
61 void FifoControllerBase::setThreshold(fifo_frames_t threshold) {
62 mThreshold = threshold;
  /external/libxcam/modules/isp/iq/
x3a_ciq_tnr_tuning_handler.cpp 93 config.threshold[0] = linear_interpolate_p2 (tuning[i_prev].y_threshold, tuning[i_curr].y_threshold,
96 config.threshold[1] = linear_interpolate_p2 (tuning[i_prev].uv_threshold, tuning[i_curr].uv_threshold,
99 config.threshold[2] = 0.0;
101 config.gain, config.threshold[0], config.threshold[1]);
111 config.threshold[0] = linear_interpolate_p2 (tuning[i_prev].r_threshold, tuning[i_curr].r_threshold,
114 config.threshold[1] = linear_interpolate_p2 (tuning[i_prev].g_threshold, tuning[i_curr].g_threshold,
117 config.threshold[2] = linear_interpolate_p2 (tuning[i_prev].b_threshold, tuning[i_curr].b_threshold,
121 config.gain, config.threshold[0], config.threshold[1])
    [all...]
  /cts/tests/sensor/src/android/hardware/cts/helpers/
SensorCalibratedUncalibratedVerifier.java 45 float threshold) {
50 mThreshold = threshold;
74 float threshold) {
95 threshold);
111 float threshold) {
119 + "Uncalibrated=%s, Bias=%s, Threshold=%s",
126 threshold);
127 Assert.assertEquals(message, calibrated, uncalibrated - bias, threshold);
  /test/vti/dashboard/src/test/java/com/android/vts/util/
StatSummaryTest.java 27 private static double threshold = 0.0000000001; field in class:StatSummaryTest
43 assertEquals(n, test.getCount(), threshold);
44 assertEquals(mean, test.getMean(), threshold);
58 assertEquals(n, test.getCount(), threshold);
59 assertEquals(min, test.getMin(), threshold);
73 assertEquals(max, test.getMax(), threshold);
94 assertEquals(std, test.getStd(), threshold);
120 assertEquals(all.getStd(), test.getStd(), threshold); local
121 assertEquals(all.getMean(), test.getMean(), threshold); local
  /external/autotest/client/cros/image_comparison/
upload_on_fail_comparer.py 23 def __init__(self, local_comparer, remote_comparer, threshold=0):
27 @param threshold: int, a value which the pixel difference between test
34 self.threshold = threshold
77 if (diffpx > self.threshold):
78 logging.debug('Threshold diff pixels is %d', self.threshold)
79 logging.debug('Diff pxls > threshold. Using remote comparer.')
  /cts/suite/audio_quality/test_description/processing/
playback_sample.py 22 # pass level threshold (double)
45 threshold = inputData[2]
49 print "Expected Freq ", signalFrequency, "Actual Freq ", freq, "Threshold % ", threshold
51 if (diff < threshold):

Completed in 652 milliseconds

1 2 3 4 5 6 7 8 91011>>