/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 ) {
|
/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/tests/hardware/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...] |
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...] |
/external/opencv3/modules/features2d/src/ |
agast_score.hpp | 58 int agast_cornerScore(const uchar* ptr, const int pixel[], int threshold);
|
fast_score.hpp | 57 int cornerScore(const uchar* ptr, const int pixel[], int threshold);
|
kaze.cpp | 63 , threshold(_threshold) 78 void setThreshold(double threshold_) { threshold = (float)threshold_; } 79 double getThreshold() const { return threshold; } 125 options.dthreshold = threshold; 157 fs << "threshold" << threshold; local 167 threshold = (float)fn["threshold"]; 175 float threshold; member in class:cv::KAZE_Impl 182 float threshold, [all...] |
/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...] |
/hardware/bsp/intel/peripheral/libupm/src/grovegsr/ |
grovegsr.cxx | 52 int val, threshold, sum = 0; local 60 threshold = sum / 500; 61 cout << "Threshold = " << threshold << endl;
|
/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) {
|
/cts/tests/tests/hardware/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);
|
/packages/apps/Dialer/InCallUI/src/com/android/incallui/ |
InCallOrientationEventListener.java | 50 * Say for e.g our threshold is x degrees. We will only notify UI when our current rotation is 56 // Rotation threshold is 10 degrees. So if the rotation angle is within 10 degrees of any of 144 * within threshold to identify zones where orientation change should not be trigerred. 167 private static boolean isWithinThreshold(int value, int center, int threshold) { 168 return isWithinRange(value, center - threshold, center + threshold); 171 private static boolean isInLeftRange(int value, int center, int threshold) { 172 return isWithinRange(value, center - threshold, center); 175 private static boolean isInRightRange(int value, int center, int threshold) { 176 return isWithinRange(value, center, center + threshold); [all...] |
/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):
|
/external/autotest/client/site_tests/platform_TempFS/ |
platform_TempFS.py | 24 # TempFS allows 1/2 of Total Memory for each temp fs. Our threshold 27 threshold = utils.memtotal()/4 35 if avail < threshold: 38 (threshold, avail))
|
/external/opencv3/modules/java/src/ |
photo+CalibrateRobertson.java | 59 // C++: void setThreshold(float threshold) 62 //javadoc: CalibrateRobertson::setThreshold(threshold) 63 public void setThreshold(float threshold) 66 setThreshold_0(nativeObj, threshold); 102 // C++: void setThreshold(float threshold) 103 private static native void setThreshold_0(long nativeObj, float threshold);
|