/external/libpng/tests/ |
H A D | pngvalid-gamma-threshold | 2 exec ./pngvalid --gamma-threshold
|
/external/valgrind/drd/tests/ |
H A D | annotate_rwlock_hg.stderr.exp | 1 Total error count is below threshold.
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/ |
H A D | 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 ) {
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
H A D | ShadowAutoCompleteTextView.java | 19 private int threshold = 2; field in class:ShadowAutoCompleteTextView 34 return threshold; 38 public void setThreshold(int threshold) { argument 39 if (threshold <= 0) { 40 threshold = 1; 42 this.threshold = threshold;
|
/external/deqp/framework/common/ |
H A D | tcuBilinearImageCompare.hpp | 35 bool bilinearCompare (const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const PixelBufferAccess& errorMask, const RGBA threshold);
|
H A D | 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, CompareLogMod [all...] |
H A D | tcuBilinearImageCompare.cpp | 114 bool comparePixelRGBA8 (const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const RGBA threshold, int x, int y) 127 if (compareThreshold(resPix, readRGBA8(reference, x1, y1), threshold) || 128 compareThreshold(resPix, readRGBA8(reference, x0, y1), threshold) || 129 compareThreshold(resPix, readRGBA8(reference, x2, y1), threshold) || 130 compareThreshold(resPix, readRGBA8(reference, x0, y0), threshold) || 131 compareThreshold(resPix, readRGBA8(reference, x1, y0), threshold) || 132 compareThreshold(resPix, readRGBA8(reference, x2, y0), threshold) || 133 compareThreshold(resPix, readRGBA8(reference, x0, y2), threshold) || 134 compareThreshold(resPix, readRGBA8(reference, x1, y2), threshold) || 135 compareThreshold(resPix, readRGBA8(reference, x2, y2), threshold)) [all...] |
H A D | tcuImageCompare.cpp | 91 static int findNumPositionDeviationFailingPixels (const PixelBufferAccess& errorMask, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, const tcu::IVec3& maxPositionDeviation, bool acceptOutOfBoundsAsAnyValue) argument 124 const bool isOk = boolAll(lessThanEqual(diff, threshold)); 143 const bool isOk = boolAll(lessThanEqual(diff, threshold)); 166 const bool isOk = boolAll(lessThanEqual(diff, threshold)); 200 * metric is usually <0.01. Thus good threshold values are in range 0.02 to 212 * \param threshold Error metric threshold (good values are 0.02-0.05) 216 bool fuzzyCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, float threshold, CompareLogMode logMode) argument 221 bool isOk = difference <= threshold; 235 log << TestLog::Message << "Image comparison failed: difference = " << difference << ", threshold 285 fuzzyCompare(TestLog& log, const char* imageSetName, const char* imageSetDesc, const Surface& reference, const Surface& result, float threshold, CompareLogMode logMode) argument 486 floatUlpThresholdCompare(TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, CompareLogMode logMode) argument 572 floatThresholdCompare(TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const Vec4& threshold, CompareLogMode logMode) argument 659 floatThresholdCompare(TestLog& log, const char* imageSetName, const char* imageSetDesc, const Vec4& reference, const ConstPixelBufferAccess& result, const Vec4& threshold, CompareLogMode logMode) argument 741 intThresholdCompare(TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, CompareLogMode logMode) argument 836 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) argument 915 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) argument 982 pixelThresholdCompare(TestLog& log, const char* imageSetName, const char* imageSetDesc, const Surface& reference, const Surface& result, const RGBA& threshold, CompareLogMode logMode) argument 1005 bilinearCompare(TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const RGBA threshold, CompareLogMode logMode) argument [all...] |
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/ |
H A D | AppenderSkeleton.java | 31 public void setThreshold(Priority threshold) { argument
|
/external/pdfium/core/src/fpdftext/ |
H A D | 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 * 223 FX_FLOAT threshold = 0; local [all...] |
/external/clang/test/CodeGen/ |
H A D | 2008-08-07-AlignPadding1.c | 17 int threshold; member in struct:gc_generation 28 /* PyGC_Head, threshold, count */
|
H A D | union-init.c | 17 int threshold; /* collection threshold */ member in struct:gc_generation 27 /* PyGC_Head, threshold, count */
|
/external/iptables/include/linux/netfilter/ |
H A D | xt_NFLOG.h | 14 __u16 threshold; member in struct:xt_nflog_info
|
/external/kernel-headers/original/uapi/linux/netfilter/ |
H A D | xt_NFLOG.h | 14 __u16 threshold; member in struct:xt_nflog_info
|
/external/kernel-headers/original/uapi/linux/netfilter_bridge/ |
H A D | ebt_nflog.h | 17 __u16 threshold; member in struct:ebt_nflog_info
|
/external/libvpx/libvpx/test/ |
H A D | set_roi.cc | 33 unsigned int threshold[MAX_MB_SEGMENTS] = { 0, 100, 200, 300 }; local 71 threshold); 106 if (threshold[i] != breakout) { 107 EXPECT_EQ(threshold[i], breakout) 108 << "breakout threshold error"; 139 delta_lf, threshold); 149 rand_deltas, threshold); 161 delta_lf, threshold); 168 delta_lf, threshold); 173 delta_lf, threshold); [all...] |
/external/aac/libPCMutils/include/ |
H A D | limiter.h | 126 * threshold: limiting threshold * 133 INT_PCM threshold, 223 * threshold: limiter threshold * 226 TDLIMITER_ERROR setLimiterThreshold(TDLimiterPtr limiter, INT_PCM threshold);
|
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/ |
H A D | tgt.h | 119 Encode the value of a leaf of the tag-tree up to a given threshold 123 @param threshold Threshold to use when encoding value of the leaf 128 OPJ_INT32 threshold); 130 Decode the value of a leaf of the tag-tree up to a given threshold 134 @param threshold Threshold to use when decoding value of the leaf 135 @return Returns 1 if the node's value < threshold, returns 0 otherwise 140 OPJ_INT32 threshold);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | CalendarCache.java | 29 threshold = (int)(arraySize * 0.75); 45 if (size >= threshold) { 117 private int threshold = (arraySize * 3) / 4; field in class:CalendarCache
|
/external/skia/bin/ |
H A D | compare | 29 for threshold, suffix in [(1e9, 's'), (1e6, 'ms'), (1e3, 'us'), (1e0, 'ns')]: 30 if ns > threshold: 31 return "%.3g%s" % (ns/threshold, suffix)
|
/external/iptables/extensions/ |
H A D | libxt_NFLOG.c | 26 {.name = "nflog-threshold", .id = O_THRESHOLD, .type = XTTYPE_UINT16, 27 .flags = XTOPT_PUT, XTOPT_POINTER(s, threshold)}, 37 " --nflog-threshold NUM Message threshold of in-kernel queue\n" 45 info->threshold = XT_NFLOG_DEFAULT_THRESHOLD; 70 if (info->threshold != XT_NFLOG_DEFAULT_THRESHOLD) 71 printf(" %snflog-threshold %u", prefix, info->threshold);
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
H A D | SsaConverter.java | 66 * registers above a certain threshold number. 69 * @param threshold registers below this number are unchanged 71 public static void updateSsaMethod(SsaMethod ssaMeth, int threshold) { argument 73 placePhiFunctions(ssaMeth, localInfo, threshold); 74 new SsaRenamer(ssaMeth, threshold).run(); 285 * @param threshold registers below this number are ignored 288 LocalVariableInfo localInfo, int threshold) { 295 regCount = ssaMeth.getRegCount() - threshold; 321 if (rs != null && rs.getReg() - threshold >= 0) { 322 defsites[rs.getReg() - threshold] 287 placePhiFunctions(SsaMethod ssaMeth, LocalVariableInfo localInfo, int threshold) argument [all...] |
/external/libavc/common/ |
H A D | ih264_trans_macros.h | 48 * @description The value to be quantized is first compared with a threshold. 49 * If the value is less than the threshold, the quantization value is returned 54 #define FWD_QUANT(i4_value, u4_abs_value, i4_sign, threshold, scale, rndfactor, qbits, u4_nnz) \ 66 if (u4_abs_value < threshold)\
|
/external/opencv/cvaux/include/ |
H A D | cvaux.hpp | 87 bool set_threshold( int threshold ) // threshold applied to the histogram bins 88 { m_threshold = threshold; return true; }
|
/external/aac/libPCMutils/src/ |
H A D | limiter.cpp | 98 FIXP_PCM threshold; member in struct:TDLimiter 117 INT_PCM threshold, 161 limiter->threshold = (FIXP_PCM)threshold; 239 FIXP_DBL threshold = FX_PCM2FX_DBL(limiter->threshold)>>TDL_GAIN_SCALING; local 288 /* set threshold as lower border to save calculations in running maximum algorithm */ 289 tmp = fMax(tmp, threshold); 316 if (max > threshold) { 317 gain = fDivNorm(threshold, ma 114 createLimiter( unsigned int maxAttackMs, unsigned int releaseMs, INT_PCM threshold, unsigned int maxChannels, unsigned int maxSampleRate ) argument 491 setLimiterThreshold(TDLimiterPtr limiter, INT_PCM threshold) argument [all...] |