/external/libpng/tests/ |
pngvalid-gamma-threshold | 2 exec ./pngvalid --gamma-threshold
|
/external/chromium_org/chrome/browser/extensions/api/idle/ |
idle_api.cc | 19 int ClampThreshold(int threshold) { 20 if (threshold < kMinThreshold) { 21 threshold = kMinThreshold; 22 } else if (threshold > kMaxThreshold) { 23 threshold = kMaxThreshold; 26 return threshold; 34 int threshold; local 35 EXTENSION_FUNCTION_VALIDATE(args_->GetInteger(0, &threshold)); 36 threshold = ClampThreshold(threshold); 51 int threshold; local 56 ->SetThreshold(extension_id(), threshold); local [all...] |
/external/valgrind/main/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 ) {
|
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensorverification/ |
StandardDeviationVerificationTest.java | 46 float[] threshold = {2, 2, 4}; local 47 runVerification(threshold, values, true, standardDeviations); 49 threshold = new float[]{1, 2, 4}; 50 runVerification(threshold, values, false, standardDeviations); 52 threshold = new float[]{2, 1, 4}; 53 runVerification(threshold, values, false, standardDeviations); 55 threshold = new float[]{2, 2, 3}; 56 runVerification(threshold, values, false, standardDeviations); 59 private void runVerification(float[] threshold, float[][] values, boolean pass, 62 StandardDeviationVerification verification = getVerification(threshold, values) [all...] |
MeanVerificationTest.java | 43 float[] threshold = {0.1f, 0.1f, 0.1f}; local 45 MeanVerification verification = getVerification(expected, threshold, values); 50 threshold = new float[]{0.6f, 0.6f, 0.6f}; 52 verification = getVerification(expected, threshold, values); 57 threshold = new float[]{0.1f, 0.6f, 0.6f}; 59 verification = getVerification(expected, threshold, values); 69 threshold = new float[]{0.6f, 0.1f, 0.6f}; 71 verification = getVerification(expected, threshold, values); 80 threshold = new float[]{0.6f, 0.6f, 0.1f}; 82 verification = getVerification(expected, threshold, values) [all...] |
MagnitudeVerificationTest.java | 49 private void runStats(float expected, float threshold, float[][] values, boolean pass, float magnitude) { 51 MagnitudeVerification verification = getVerification(expected, threshold, values); 66 private MagnitudeVerification getVerification(float expected, float threshold, 68 MagnitudeVerification verification = new MagnitudeVerification(expected, threshold);
|
/external/srec/srec/Semproc/include/ |
SR_SemprocDefinitions.h | 207 #define MEMCHK(rc, val, threshold) \ 209 if(val > threshold) \ 212 PLogError(L("%s: %d > %d\n"), ESR_rc2str(rc), (val), (threshold)); \ 216 #define LENCHK(rc, val, threshold) \ 218 if(LSTRLEN(val) > threshold) \ 221 PLogError(L("%s: %s > %d\n"), ESR_rc2str(rc), (val), (threshold)); \
|
/cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapverifiers/ |
ColorVerifier.java | 28 public ColorVerifier(int color, int threshold) { 29 super(threshold);
|
/external/robolectric/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/chromium_org/remoting/host/ |
audio_silence_detector.h | 16 // |threshold| is used to specify maximum absolute sample value that should 18 AudioSilenceDetector(int threshold); 31 // Silence period threshold in samples. Silence intervals shorter than this
|
audio_silence_detector.cc | 13 // Silence period threshold in seconds. Silence intervals shorter than this 20 AudioSilenceDetector::AudioSilenceDetector(int threshold) 21 : threshold_(threshold),
|
/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...] |
/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;
|
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/ |
SensorCalibratedUncalibratedVerifier.java | 43 float threshold) { 46 mThreshold = threshold; 72 float threshold) { 93 threshold); 109 float threshold) { 117 + "Uncalibrated=%s, Bias=%s, Threshold=%s", 124 threshold); 125 Assert.assertEquals(message, calibrated, uncalibrated - bias, threshold);
|
/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):
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
log.py | 16 def __init__(self, threshold=WARN): 17 self.threshold = threshold 23 if level >= self.threshold: 60 # return the old threshold for use from tests 61 old = _global_log.threshold 62 _global_log.threshold = level
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
log.py | 16 def __init__(self, threshold=WARN): 17 self.threshold = threshold 23 if level >= self.threshold: 60 # return the old threshold for use from tests 61 old = _global_log.threshold 62 _global_log.threshold = level
|
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/ |
DynamicsCompressorNode.idl | 28 readonly attribute AudioParam threshold; // in Decibels
|
/external/pdfium/core/src/fpdftext/ |
fpdf_text_search.cpp | 107 FX_FLOAT threshold = last_width > this_width ? last_width / 4 : this_width / 4;
local 113 if (FXSYS_fabs(y) > threshold * 2) {
116 threshold = (FX_FLOAT)(nLastWidth > nThisWidth ? nLastWidth : nThisWidth);
117 threshold = threshold > 400 ? (threshold < 700 ? threshold / 4 : threshold / 5) : (threshold / 2);
118 threshold *= nLastWidth > nThisWidth ? FXSYS_fabs(pPrevObj->GetFontSize()) : FXSYS_fabs(pObj->GetFontSize()) (…) 227 FX_FLOAT threshold = 0; local [all...] |
/bionic/libc/kernel/uapi/linux/netfilter/ |
xt_NFLOG.h | 30 __u16 threshold; member in struct:xt_nflog_info
|
/bionic/libc/kernel/uapi/linux/netfilter_bridge/ |
ebt_nflog.h | 32 __u16 threshold; member in struct:ebt_nflog_info
|
/development/ndk/platforms/android-L/include/linux/netfilter/ |
xt_NFLOG.h | 30 __u16 threshold; member in struct:xt_nflog_info
|