Searched refs:threshold (Results 1 - 25 of 283) sorted by relevance

1234567891011>>

/external/libpng/tests/
H A Dpngvalid-gamma-threshold2 exec ./pngvalid --gamma-threshold
/external/valgrind/drd/tests/
H A Dannotate_rwlock_hg.stderr.exp1 Total error count is below threshold.
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DBarrier.java36 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 DShadowAutoCompleteTextView.java19 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 DtcuBilinearImageCompare.hpp35 bool bilinearCompare (const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const PixelBufferAccess& errorMask, const RGBA threshold);
H A DtcuImageCompare.hpp47 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 DtcuBilinearImageCompare.cpp114 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 DtcuImageCompare.cpp91 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 DAppenderSkeleton.java31 public void setThreshold(Priority threshold) { argument
/external/pdfium/core/src/fpdftext/
H A Dfpdf_text_search.cpp107 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 D2008-08-07-AlignPadding1.c17 int threshold; member in struct:gc_generation
28 /* PyGC_Head, threshold, count */
H A Dunion-init.c17 int threshold; /* collection threshold */ member in struct:gc_generation
27 /* PyGC_Head, threshold, count */
/external/iptables/include/linux/netfilter/
H A Dxt_NFLOG.h14 __u16 threshold; member in struct:xt_nflog_info
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_NFLOG.h14 __u16 threshold; member in struct:xt_nflog_info
/external/kernel-headers/original/uapi/linux/netfilter_bridge/
H A Debt_nflog.h17 __u16 threshold; member in struct:ebt_nflog_info
/external/libvpx/libvpx/test/
H A Dset_roi.cc33 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 Dlimiter.h126 * 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 Dtgt.h119 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 DCalendarCache.java29 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 Dcompare29 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 Dlibxt_NFLOG.c26 {.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 DSsaConverter.java66 * 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 Dih264_trans_macros.h48 * @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 Dcvaux.hpp87 bool set_threshold( int threshold ) // threshold applied to the histogram bins
88 { m_threshold = threshold; return true; }
/external/aac/libPCMutils/src/
H A Dlimiter.cpp98 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...]

Completed in 1150 milliseconds

1234567891011>>