/cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/ |
MSSIMComparer.java | 46 public MSSIMComparer(double threshold) { 47 mThreshold = threshold;
|
/external/ceres-solver/internal/ceres/ |
incomplete_lq_factorization.cc | 131 const double threshold = drop_tolerance * max_value; local 135 if (fabs(dense_row[i]) > threshold) {
|
/external/chromium_org/chrome/app/ |
client_util.cc | 127 double threshold = (channel == installer::kChromeChannelStable) ? 0.01 : 0.10; local 133 if (PreReadExperimentIsActive() && (population <= threshold)) {
|
/external/chromium_org/chrome/browser/chromeos/attestation/ |
attestation_policy_observer.cc | 220 const base::TimeDelta threshold = local 222 if ((base::Time::Now() + threshold) > x509->valid_expiry()) {
|
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/ |
remote_rate_control.cc | 63 const int threshold = static_cast<int>(1.05 * incoming_bitrate); local 65 return bitrate_difference > threshold;
|
/external/chromium_org/tools/memory_inspector/memory_inspector/classification/ |
native_heap_classifier.py | 69 def InferHeuristicRulesFromHeap(nheap, max_depth=3, threshold=0.02): 76 |threshold| (1.0 = 100%) w.r.t. the total allocation of the heap snapshot. 133 # than |threshold| and make a radix tree out of them. 136 if (1.0 * alloc_size / total_allocated) < threshold:
|
/external/deqp/modules/gles2/functional/ |
es2fShaderBuiltinVarTests.cpp | 276 const tcu::RGBA threshold = tcu::RGBA(1,1,1,1) + m_context.getRenderTarget().getPixelFormat().getColorThreshold(); local 342 bool isOk = tcu::pixelThresholdCompare(log, "Result", "Image comparison result", refImg, testImg, threshold, tcu::COMPARE_LOG_RESULT); 370 const tcu::RGBA threshold = tcu::RGBA(1,1,1,1) + m_context.getRenderTarget().getPixelFormat().getColorThreshold(); local 434 bool isOk = tcu::pixelThresholdCompare(log, "Result", "Image comparison result", refImg, testImg, threshold, tcu::COMPARE_LOG_RESULT); 457 const float threshold = 0.02f; local 551 bool isOk = tcu::fuzzyCompare(log, "Result", "Image comparison result", refImg, testImg, threshold, tcu::COMPARE_LOG_RESULT); 581 const tcu::RGBA threshold = tcu::RGBA(1,1,1,1) + m_context.getRenderTarget().getPixelFormat().getColorThreshold(); local 646 bool isOk = tcu::pixelThresholdCompare(log, "Result", "Image comparison result", refImg, testImg, threshold, tcu::COMPARE_LOG_RESULT);
|
es2fTextureFormatTests.cpp | 143 tcu::RGBA threshold = m_renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(1,1,1,1); local 194 bool isOk = compareImages(log, referenceFrame, renderedFrame, threshold); 319 tcu::RGBA threshold = m_renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(1,1,1,1); local 362 return compareImages(log, referenceFrame, renderedFrame, threshold); 453 tcu::RGBA threshold = m_renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(1,1,1,1); local 484 bool isOk = compareImages(log, referenceFrame, renderedFrame, threshold); 565 tcu::RGBA threshold = m_renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(1,1,1,1); local 596 return compareImages(log, referenceFrame, renderedFrame, threshold);
|
/external/deqp/modules/internal/ |
ditImageCompareTests.cpp | 110 BilinearCompareCase (tcu::TestContext& testCtx, const char* name, const char* refImg, const char* cmpImg, const tcu::RGBA& threshold, bool expectedResult) 114 , m_threshold (threshold)
|
/external/libnl/lib/netfilter/ |
log_obj.c | 184 void nfnl_log_set_queue_threshold(struct nfnl_log *log, uint32_t threshold) 186 log->log_queue_threshold = threshold;
|
/external/opencv/cv/src/ |
cvcontourtree.cpp | 64 // threshold - threshold for the binary tree building 69 CvContourTree ** tree, double threshold ) 157 e = 20.; /* initial threshold value */ 236 if( s_c < threshold ) 644 // threshold - threshold for the binary tree building 648 cvCreateContourTree( const CvSeq* contour, CvMemStorage* storage, double threshold ) 655 IPPI_CALL( icvCreateContourTree( contour, storage, &tree, threshold )); 673 // criteria - criteria for the definition threshold valu 688 double threshold; local [all...] |
/external/opencv/cvaux/src/ |
cvcorrimages.cpp | 185 double threshold)/* Threshold for good points in filter */ 399 int num = cvFindFundamentalMat(tmpPoints1,tmpPoints2,&fundMatr,CV_FM_RANSAC,threshold,0.99,pStatus); 555 float threshold)/* Status for new points */ 730 if( minDistance < threshold*threshold ) 847 double threshold)//New projection matrix 877 threshold);/* Threshold for good points in filter */ 905 threshold);/* Threshold for good points in filter * [all...] |
/external/openssl/crypto/rc4/asm/ |
rc4-ia64.pl | 184 # $threshold is the minimum length before we attempt to use the 192 $threshold = (3 * ($phases * ($unroll_count + 1)) + 7); 581 cmp.gtu pSmall, p0 = $threshold, DataLen
|
/external/chromium_org/third_party/freetype/src/autofit/ |
afcjk.c | 1558 FT_Pos threshold = 64; local [all...] |
/external/freetype/src/autofit/ |
afcjk.c | 1593 FT_Pos threshold = 64; local [all...] |
/external/chromium_org/third_party/freetype/src/pshinter/ |
pshglob.c | 411 /* The blue threshold is the font units distance under */ 420 FT_Int threshold = blues->blue_shift; local 423 while ( threshold > 0 && FT_MulFix( threshold, scale ) > 32 ) 424 threshold--; 426 blues->blue_threshold = threshold;
|
/external/chromium_org/third_party/webrtc/modules/audio_processing/utility/ |
delay_estimator.c | 584 // i) an adaptive threshold |minimum_probability|, or 591 // The "hard" threshold can't be lower than 17 (in Q9). 595 int32_t threshold = value_best_candidate + kProbabilityOffset; local 596 if (threshold < kProbabilityLowerLimit) { 597 threshold = kProbabilityLowerLimit; 599 if (self->minimum_probability > threshold) { 600 self->minimum_probability = threshold;
|
/external/deqp/modules/gles31/functional/ |
es31fShaderHelperInvocationTests.cpp | 352 const tcu::RGBA threshold (1, isMultiSample ? 254 : 1, 1, 1); 361 if (!tcu::compareThreshold(resPix, bgRef, threshold) && 362 !tcu::compareThreshold(resPix, fgRef, threshold)) 494 static bool hasNeighborWithColor (const tcu::Surface& surface, int x, int y, tcu::RGBA color, tcu::RGBA threshold) 519 if (tcu::compareThreshold(color, neighborColor, threshold))
|
/external/freetype/src/pshinter/ |
pshglob.c | 411 /* The blue threshold is the font units distance under */ 420 FT_Int threshold = blues->blue_shift; local 423 while ( threshold > 0 && FT_MulFix( threshold, scale ) > 32 ) 424 threshold--; 426 blues->blue_threshold = threshold;
|
/external/oprofile/pp/ |
opannotate.cpp | 103 if (options::threshold != 0) { 106 << options::threshold << "% of the samples\n"; member in class:__anon8014::options 477 // a medium number of times, I dunno if the used threshold is optimal 499 choice.threshold = options::threshold; 740 samples->select_filename(options::threshold);
|
/external/deqp/modules/gles3/functional/ |
es3fShaderBuiltinVarTests.cpp | 299 const tcu::RGBA threshold = tcu::RGBA(1,1,1,1) + m_context.getRenderTarget().getPixelFormat().getColorThreshold(); local 368 bool isOk = tcu::pixelThresholdCompare(log, "Result", "Image comparison result", refImg, testImg, threshold, tcu::COMPARE_LOG_RESULT); 396 const tcu::RGBA threshold = tcu::RGBA(1,1,1,1) + m_context.getRenderTarget().getPixelFormat().getColorThreshold(); local 463 bool isOk = tcu::pixelThresholdCompare(log, "Result", "Image comparison result", refImg, testImg, threshold, tcu::COMPARE_LOG_RESULT); 486 const float threshold = 0.02f; local 583 bool isOk = tcu::fuzzyCompare(log, "Result", "Image comparison result", refImg, testImg, threshold, tcu::COMPARE_LOG_RESULT); 613 const tcu::RGBA threshold = tcu::RGBA(1,1,1,1) + m_context.getRenderTarget().getPixelFormat().getColorThreshold(); local 681 bool isOk = tcu::pixelThresholdCompare(log, "Result", "Image comparison result", refImg, testImg, threshold, tcu::COMPARE_LOG_RESULT); 970 const float threshold = 0.02f; local [all...] |
/external/deqp/modules/egl/ |
teglMemoryStressTests.cpp | 420 float threshold = 50.0f; local 437 if (change > threshold) 439 log << TestLog::Message << "Allocated objects max: " << max << ", min: " << min << ", difference: " << change << "% threshold: " << threshold << "%" << TestLog::EndMessage;
|
/external/deqp/modules/gles31/stress/ |
es31sTessellationGeometryInteractionTests.cpp | 391 const int threshold = 8; local 395 if (color.getGreen() < 255 - threshold || color.getBlue() > threshold)
|
/external/chromium_org/net/http/ |
http_server_properties.h | 199 // Sets the threshold to be used when evaluating Alternate-Protocol 201 // greater than |threshold| will be honored. |threshold| must be 202 // between 0 and 1 inclusive. Hence, a threshold of 0 implies that 205 double threshold) = 0;
|
http_server_properties_impl.h | 119 double threshold) OVERRIDE;
|