/external/deqp/modules/gles3/functional/ |
es3fShaderFragDataTests.cpp | 64 static bool compareSingleColor (tcu::TestLog& log, const tcu::Surface& surface, tcu::RGBA expectedColor, tcu::RGBA threshold) 69 log << TestLog::Message << "Expecting " << expectedColor << " with threshold " << threshold << TestLog::EndMessage; 76 const bool isOk = compareThreshold(resultColor, expectedColor, threshold); 201 const tcu::RGBA threshold = renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(1,1,1,1); local 207 isOk = compareSingleColor(m_testCtx.getLog(), result, tcu::RGBA::green(), threshold); 319 const tcu::RGBA threshold = renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(1,1,1,1); local 330 if (!compareSingleColor(m_testCtx.getLog(), result, ndx == 0 ? tcu::RGBA::green() : tcu::RGBA::red(), threshold))
|
/external/libgdx/gdx/src/com/badlogic/gdx/utils/ |
ObjectSet.java | 42 private int hashShift, mask, threshold; field in class:ObjectSet 71 threshold = (int)(capacity * loadFactor); 115 if (size++ >= threshold) resize(capacity << 1); 121 if (size++ >= threshold) resize(capacity << 1); 127 if (size++ >= threshold) resize(capacity << 1); 169 if (size++ >= threshold) resize(capacity << 1); 177 if (size++ >= threshold) resize(capacity << 1); 185 if (size++ >= threshold) resize(capacity << 1); 222 if (size++ >= threshold) resize(capacity << 1); 230 if (size++ >= threshold) resize(capacity << 1) [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/ |
Vector3D.java | 310 double threshold = 0.6 * getNorm(); local 311 if (threshold == 0) { 315 if ((x >= -threshold) && (x <= threshold)) { 318 } else if ((y >= -threshold) && (y <= threshold)) { 346 double threshold = normProduct * 0.9999; local 347 if ((dot < -threshold) || (dot > threshold)) {
|
/frameworks/av/media/common_time/ |
ICommonTimeConfig.cpp | 246 virtual status_t getPanicThreshold(int *threshold) { 255 *threshold = reply.readInt32(); 262 virtual status_t setPanicThreshold(int threshold) { 265 data.writeInt32(threshold); 462 int threshold; local 463 status_t status = getPanicThreshold(&threshold); 466 reply->writeInt32(threshold); 473 int threshold = data.readInt32(); local 474 status_t status = setPanicThreshold(threshold);
|
/external/deqp/modules/gles2/functional/ |
es2fShaderFragDataTests.cpp | 64 static bool compareSingleColor (tcu::TestLog& log, const tcu::Surface& surface, tcu::RGBA expectedColor, tcu::RGBA threshold) 69 log << TestLog::Message << "Expecting " << expectedColor << " with threshold " << threshold << TestLog::EndMessage; 76 const bool isOk = compareThreshold(resultColor, expectedColor, threshold); 201 const tcu::RGBA threshold = renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(1,1,1,1); local 207 isOk = compareSingleColor(m_testCtx.getLog(), result, tcu::RGBA::green(), threshold);
|
/external/pdfium/third_party/libopenjpeg20/ |
tgt.c | 260 void opj_tgt_encode(opj_bio_t *bio, opj_tgt_tree_t *tree, OPJ_UINT32 leafno, OPJ_INT32 threshold) { 281 while (low < threshold) { 300 OPJ_UINT32 opj_tgt_decode(opj_bio_t *bio, opj_tgt_tree_t *tree, OPJ_UINT32 leafno, OPJ_INT32 threshold) { 320 while (low < threshold && low < node->value) { 334 return (node->value < threshold) ? 1 : 0;
|
/external/skia/tools/ |
skdiff.cpp | 143 static inline bool colors_match_thresholded(SkPMColor c0, SkPMColor c1, const int threshold) { 149 return ((SkAbs32(da) <= threshold) && 150 (SkAbs32(dr) <= threshold) && 151 (SkAbs32(dg) <= threshold) && 152 (SkAbs32(db) <= threshold));
|
/external/opencv3/modules/imgproc/src/ |
hough.cpp | 73 threshold is the minimum number of pixels in the feature for it 80 int threshold, std::vector<Vec2f>& lines, int linesMax, 107 int ipp_linesMax = std::min(linesMax, nz*numangle/threshold); 112 if (ok >= 0) ok = ippiHoughLine_Region_8u32f_C1R(image, step, srcSize, (IppPointPolar*) &lines[0], dstRoi, ipp_linesMax, &linesCount, delta, threshold, buffer); 159 if( accum[base] > threshold && 199 float rho, float theta, int threshold, 227 threshold = MIN( threshold, 255 ); 244 lst.push_back(hough_index(threshold, -1.f, 0.f)); 322 if( caccum[ri * tn + ti] > threshold ) [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/ |
Correlation.java | 100 private boolean downsampleData(double [] data, double [] dataDownsampled, double threshold) { 127 if (value >= threshold) { 134 log(String.format(" Threshold: %.3f, ignored:%d/%d (%%.2f)", threshold, ignored, N,
|
/external/freetype/src/autofit/ |
afangles.c | 212 FT_Pos threshold ) 242 /* `threshold'; this is very primitive and might not yield */ 247 if ( table[i].org - cur_val > threshold || 253 if ( table[i].org - cur_val <= threshold &&
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/autofit/ |
afangles.c | 212 FT_Pos threshold ) 242 /* `threshold'; this is very primitive and might not yield */ 247 if ( table[i].org - cur_val > threshold || 253 if ( table[i].org - cur_val <= threshold &&
|
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
UDPMessageProcessor.java | 213 float threshold = ((float)(messageQueue.size() - LOWAT))/ ((float)(HIGHWAT - LOWAT)); local 214 boolean decision = Math.random() > 1.0 - threshold; 217 sipStack.getStackLogger().logDebug("Dropping message with probability " + (1.0 - threshold));
|
/external/opencv3/modules/features2d/include/opencv2/ |
features2d.hpp | 225 @param thresh AGAST detection threshold score. 238 @param dMax threshold for the short pairings used for descriptor formation (in pixels for keypoint 240 @param dMin threshold for the long pairings used for orientation determination (in pixels for 358 int threshold, bool nonmaxSuppression=true ); 364 @param threshold threshold on difference between intensity of the central pixel and pixels of a 379 int threshold, bool nonmaxSuppression, int type ); 394 THRESHOLD = 10000, NONMAX_SUPPRESSION=10001, FAST_N=10002, 397 CV_WRAP static Ptr<FastFeatureDetector> create( int threshold=10, 401 CV_WRAP virtual void setThreshold(int threshold) = 0 [all...] |
/external/webrtc/webrtc/modules/video_coding/ |
jitter_estimator_tests.cc | 126 int threshold = regular_estimator_.GetJitterEstimate(0) / 2; local 136 if (regular_estimator_.GetJitterEstimate(0) < threshold) { 144 if (low_rate_estimator_.GetJitterEstimate(0) < threshold) {
|
/dalvik/dx/src/com/android/dx/ssa/ |
SsaRenamer.java | 75 private int threshold; field in class:SsaRenamer 110 threshold = 0; 146 * Constructs an instance of the renamer with threshold set 154 threshold = thresh; 238 * Returns true if this SSA register is below the specified threshold. 240 * for registers above a certain threshold. 243 * @return {@code true} if its register number is below the threshold 246 return ssaReg < threshold; 540 threshold == 0) { 549 threshold == 0) [all...] |
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
SsaRenamer.java | 76 private int threshold; field in class:SsaRenamer 111 threshold = 0; 147 * Constructs an instance of the renamer with threshold set 155 threshold = thresh; 239 * Returns true if this SSA register is below the specified threshold. 241 * for registers above a certain threshold. 244 * @return {@code true} if its register number is below the threshold 247 return ssaReg < threshold; 541 threshold == 0) { 550 threshold == 0) [all...] |
/external/opencv3/modules/imgproc/test/ocl/ |
test_filters.cpp | 118 void Near(double threshold, bool relative) 121 OCL_EXPECT_MATS_NEAR_RELATIVE(dst, threshold); 123 OCL_EXPECT_MATS_NEAR(dst, threshold); 328 void Near(double threshold, bool relative) 331 OCL_EXPECT_MATS_NEAR_RELATIVE(dst, threshold); 333 OCL_EXPECT_MATS_NEAR(dst, threshold);
|
/external/valgrind/massif/tests/ |
thresholds_0_10.post.exp | 3 Massif arguments: --stacks=no --time-unit=B --heap-admin=0 --threshold=0 --massif-out-file=massif.out --ignore-fn=__part_load_locale --ignore-fn=__time_load_locale --ignore-fn=dwarf2_unwind_dyld_add_image_hook --ignore-fn=get_or_create_key_element 4 ms_print arguments: massif.out --threshold=10 53 | ->06.50% (5,200B) in 3+ places, all below ms_print's threshold (10.00%) 58 | ->13.00% (10,400B) in 3+ places, all below ms_print's threshold (10.00%) 60 ->00.50% (400B) in 1+ places, all below ms_print's threshold (10.00%)
|
thresholds_10_0.post.exp | 3 Massif arguments: --stacks=no --time-unit=B --heap-admin=0 --threshold=10 --massif-out-file=massif.out --ignore-fn=__part_load_locale --ignore-fn=__time_load_locale --ignore-fn=dwarf2_unwind_dyld_add_image_hook --ignore-fn=get_or_create_key_element 4 ms_print arguments: massif.out --threshold=0 53 | ->06.50% (5,200B) in 3 places, all below massif's threshold (10.00%) 58 | ->13.00% (10,400B) in 3 places, all below massif's threshold (10.00%) 60 ->00.50% (400B) in 1 place, below massif's threshold (10.00%)
|
thresholds_10_10.post.exp | 3 Massif arguments: --stacks=no --time-unit=B --heap-admin=0 --threshold=10 --massif-out-file=massif.out --ignore-fn=__part_load_locale --ignore-fn=__time_load_locale --ignore-fn=dwarf2_unwind_dyld_add_image_hook --ignore-fn=get_or_create_key_element 4 ms_print arguments: massif.out --threshold=10 53 | ->06.50% (5,200B) in 1+ places, all below ms_print's threshold (10.00%) 58 | ->13.00% (10,400B) in 3 places, all below massif's threshold (10.00%) 60 ->00.50% (400B) in 1+ places, all below ms_print's threshold (10.00%)
|
thresholds_5_0.post.exp | 3 Massif arguments: --stacks=no --time-unit=B --heap-admin=0 --threshold=5 --massif-out-file=massif.out --ignore-fn=__part_load_locale --ignore-fn=__time_load_locale --ignore-fn=dwarf2_unwind_dyld_add_image_hook --ignore-fn=get_or_create_key_element 4 ms_print arguments: massif.out --threshold=0 55 | ->01.50% (1,200B) in 2 places, all below massif's threshold (5.00%) 63 | ->04.00% (3,200B) in 2 places, all below massif's threshold (5.00%) 65 ->00.50% (400B) in 1 place, below massif's threshold (5.00%)
|
thresholds_5_10.post.exp | 3 Massif arguments: --stacks=no --time-unit=B --heap-admin=0 --threshold=5 --massif-out-file=massif.out --ignore-fn=__part_load_locale --ignore-fn=__time_load_locale --ignore-fn=dwarf2_unwind_dyld_add_image_hook --ignore-fn=get_or_create_key_element 4 ms_print arguments: massif.out --threshold=10 53 | ->06.50% (5,200B) in 2+ places, all below ms_print's threshold (10.00%) 58 | ->13.00% (10,400B) in 2+ places, all below ms_print's threshold (10.00%) 60 ->00.50% (400B) in 1+ places, all below ms_print's threshold (10.00%)
|
/cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/ |
ThresholdDifferenceComparer.java | 29 * Compares two images to see if each pixel is the same, within a certain threshold value 37 * @param threshold Each pixel is compared against each other, in each of the individual 39 * threshold, then this test will fail. 41 public ThresholdDifferenceComparer(int threshold) { 42 mThreshold = threshold;
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/cloudwatch/ |
metric.py | 107 def create_alarm(self, name, comparison, threshold, 131 threshold, period, evaluation_periods,
|
/external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
vktPipelineBlendTests.cpp | [all...] |