HomeSort by relevance Sort by last modified time
    Searched defs:threshold (Results 101 - 125 of 354) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/eigen/Eigen/src/QR/
FullPivHouseholderQR.h 215 * For that, it uses the threshold value that you can control by calling
222 RealScalar premultiplied_threshold = abs(m_maxpivot) * threshold();
232 * For that, it uses the threshold value that you can control by calling
245 * For that, it uses the threshold value that you can control by calling
258 * For that, it uses the threshold value that you can control by calling
270 * For that, it uses the threshold value that you can control by calling
301 /** Allows to prescribe a threshold to be used by certain methods, such as rank(),
305 * When it needs to get the threshold value, Eigen calls threshold(). By default, this
306 * uses a formula to automatically determine a reasonable threshold
343 RealScalar threshold() const function in class:Eigen::FullPivHouseholderQR
    [all...]
  /external/jsoncpp/src/lib_json/
json_reader.cpp 592 Value::LargestUInt threshold = maxIntegerValue / 10; local
600 if ( value >= threshold )
606 if (value > threshold ||
  /external/libopus/silk/fixed/
pitch_analysis_core_FIX.c 88 const opus_int32 search_thres1_Q16, /* I First stage threshold for lag candidates 0 - 1 */
89 const opus_int search_thres2_Q13, /* I Final threshold for lag candidates 0 - 1 */
107 opus_int32 sum, threshold, lag_counter; local
261 threshold = silk_SMULWB( search_thres1_Q16, Cmax );
263 /* Convert to 8 kHz indices for the sorted correlation that exceeds the threshold */
264 if( C[ i ] > threshold ) {
    [all...]
  /external/libopus/silk/float/
pitch_analysis_core_FLP.c 74 const silk_float search_thres1, /* I First stage threshold for lag candidates 0 - 1 */
75 const silk_float search_thres2, /* I Final threshold for lag candidates 0 - 1 */
88 silk_float threshold, contour_bias; local
231 threshold = search_thres1 * Cmax;
233 /* Convert to 8 kHz indices for the sorted correlation that exceeds the threshold */
234 if( C[ 0 ][ min_lag_4kHz + i ] > threshold ) {
  /external/qemu/audio/
esdaudio.c 118 int threshold; local
120 threshold = conf.divisor ? hw->samples / conf.divisor : 0;
134 if (esd->live > threshold) {
327 int threshold; local
329 threshold = conf.divisor ? hw->samples / conf.divisor : 0;
343 if (esd->dead > threshold) {
599 .descr = "threshold divisor"
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11video.h 96 int threshold; member in struct:SDL_PrivateVideoData::__anon33327
  /frameworks/base/core/java/com/android/internal/widget/
DrawableHolder.java 128 final float threshold = 1.0f / 256.0f; // contribution less than 1 LSB of RGB byte local
129 if (mAlpha <= threshold) // don't bother if it won't show up
  /frameworks/native/cmds/flatland/
Main.cpp 616 const double threshold = .0025; local
675 } while (fabs(result - prevResult) > threshold * result);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
ContactMatcher.java 37 // Suggest to aggregate contacts if their match score is equal or greater than this threshold
40 // Automatically aggregate contacts if their match score is equal or greater than this threshold
43 // Automatically aggregate contacts if the match score is equal or greater than this threshold
88 * between the strings is below the threshold.
320 float threshold = emailBased local
323 if (distance > threshold) {
372 public List<Long> prepareSecondaryMatchCandidates(int threshold) {
382 if (s >= threshold) {
394 * Returns the contactId with the best match score over the specified threshold or -1
399 public long pickBestMatch(int threshold, boolean allowMultipleMatches)
    [all...]
  /system/core/logd/
LogStatistics.cpp 632 size_t threshold = sizes(i); local
633 if (threshold < 65536) {
634 threshold = 65536;
636 threshold /= 100;
646 if (sizes < threshold) {
  /cts/tests/tests/display/src/android/display/cts/
VirtualDisplayTest.java 422 // We use this threshold in case the display is being letterboxed when
428 final int threshold = width * height / 4; local
429 if (bluePixels > threshold) {
433 if (greenPixels > threshold) {
437 if (blackPixels > threshold) {
  /external/deqp/modules/gles2/functional/
es2fPolygonOffsetTests.cpp 77 inline bool compareThreshold (const tcu::IVec4& a, const tcu::IVec4& b, const tcu::IVec4& threshold)
79 return tcu::boolAll(tcu::lessThanEqual(tcu::abs(a - b), threshold));
99 const tcu::IVec4 threshold = tcu::IVec4(colorThreshold, colorThreshold, colorThreshold, formatThreshold.getAlpha() > 0 ? colorThreshold : 0) local
117 if (compareThreshold(cRef, cTest, threshold))
133 if (compareThreshold(cRef, cTest, threshold))
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFramebufferBlitTests.cpp 148 // Use pixel-threshold compare for rect cases since 1px off will mean failure.
149 tcu::RGBA threshold = TestCase::m_context.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(7,7,7,7); local
150 return tcu::pixelThresholdCompare(m_testCtx.getLog(), "Result", "Image comparison result", reference, result, threshold, tcu::COMPARE_LOG_RESULT);
189 const tcu::RGBA threshold = TestCase::m_context.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(7,7,7,7); local
195 const bool signConfig = tcu::compareThreshold(baseColor, cellColorA, threshold);
220 const bool isValidColor = tcu::compareThreshold(color, cellColorA, threshold) || tcu::compareThreshold(color, cellColorB, threshold);
249 if (tcu::compareThreshold(color, cellColorA, threshold))
251 else if (tcu::compareThreshold(color, cellColorB, threshold))
260 if (tcu::compareThreshold(color, cellColorA, threshold))
432 tcu::RGBA threshold; local
    [all...]
es3fPolygonOffsetTests.cpp 80 inline bool compareThreshold (const tcu::IVec4& a, const tcu::IVec4& b, const tcu::IVec4& threshold)
82 return tcu::boolAll(tcu::lessThanEqual(tcu::abs(a - b), threshold));
102 const tcu::IVec4 threshold = tcu::IVec4(colorThreshold, colorThreshold, colorThreshold, formatThreshold.getAlpha() > 0 ? colorThreshold : 0) local
120 if (compareThreshold(cRef, cTest, threshold))
136 if (compareThreshold(cRef, cTest, threshold))
    [all...]
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...]
es3fTextureFormatTests.cpp 160 tcu::RGBA threshold = m_renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(1,1,1,1); local
211 bool isOk = compareImages(log, referenceFrame, renderedFrame, threshold);
350 tcu::RGBA threshold = m_renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(1,1,1,1); local
393 return compareImages(log, referenceFrame, renderedFrame, threshold);
512 tcu::RGBA threshold = m_renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(1,1,1,1); local
550 return compareImages(log, (string("Layer" + de::toString(layerNdx))).c_str(), (string("Layer " + de::toString(layerNdx))).c_str(), referenceFrame, renderedFrame, threshold);
664 tcu::RGBA threshold = m_renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(1,1,1,1); local
703 return compareImages(log, (string("Slice" + de::toString(sliceNdx))).c_str(), (string("Slice " + de::toString(sliceNdx))).c_str(), referenceFrame, renderedFrame, threshold);
811 tcu::RGBA threshold = m_renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(1,1,1,1); local
846 bool isOk = compareImages(log, referenceFrame, renderedFrame, threshold);
961 tcu::RGBA threshold = m_renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(1,1,1,1); local
1080 tcu::RGBA threshold = m_renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(1,1,1,1); local
1192 tcu::RGBA threshold = m_renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(1,1,1,1); local
    [all...]
  /external/deqp/modules/gles31/functional/
es31fAdvancedBlendTests.cpp 495 const float threshold = 0.002f; local
499 threshold, tcu::COMPARE_LOG_RESULT);
  /external/deqp/modules/glshared/
glsMemoryStressCase.cpp 908 float threshold = 50.0f; local
924 if (change > threshold)
926 log << TestLog::Message << "Allocated objects max: " << max << ", min: " << min << ", difference: " << change << "% threshold: " << threshold << "%" << TestLog::EndMessage;
  /external/eigen/Eigen/src/SVD/
JacobiSVD.h 680 * For that, it uses the threshold value that you can control by calling
688 RealScalar premultiplied_threshold = m_singularValues.coeff(0) * threshold();
694 /** Allows to prescribe a threshold to be used by certain methods, such as rank() and solve(),
698 * When it needs to get the threshold value, Eigen calls threshold().
701 * \param threshold The new value to use as the threshold.
704 * \f$ \vert singular value \vert \leqslant threshold \times \vert max singular value \vert \f$.
708 JacobiSVD& setThreshold(const RealScalar& threshold)
711 m_prescribedThreshold = threshold;
733 RealScalar threshold() const function in class:Eigen::JacobiSVD
    [all...]
  /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/cxcore/src/
cxsvd.cpp 1029 double threshold = 0; local
1039 threshold += w[i];
1040 threshold *= 2*DBL_EPSILON;
1047 if( wi > threshold )
1123 float threshold = 0.f; local
1133 threshold += w[i];
1134 threshold *= 2*FLT_EPSILON;
1141 if( wi > threshold )
    [all...]
  /external/oprofile/pp/
opannotate.cpp 103 if (options::threshold != 0) {
106 << options::threshold << "% of the samples\n"; member in class:__anon32226::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/pdfium/core/src/reflow/
autoreflow.cpp 669 FX_FLOAT threshold = rcCurObj.Width() / 4; local
671 if(FXSYS_fabs(pPreObj->m_Bottom - pCurObj->m_Bottom) < threshold * 2
672 && FXSYS_fabs(pPreObj->m_Top - pCurObj->m_Top) < threshold * 2) {
680 if(FXSYS_fabs(pPreObj->m_Left - pCurObj->m_Left) < threshold * 2
681 && FXSYS_fabs(pPreObj->m_Right - pCurObj->m_Right) < threshold * 2) {
689 if(FXSYS_fabs(pPreObj->m_Left - pCurObj->m_Left) < threshold &&
690 FXSYS_fabs(pPreObj->m_Bottom - pCurObj->m_Bottom) > threshold * 2) {
693 if(FXSYS_fabs(pPreObj->m_Left - pCurObj->m_Left) > threshold &&
694 FXSYS_fabs(pPreObj->m_Bottom - pCurObj->m_Bottom) < threshold * 2) {
  /frameworks/base/core/tests/coretests/src/android/hardware/display/
VirtualDisplayTest.java 476 // We use this threshold in case the display is being letterboxed when
482 final int threshold = width * height / 4; local
483 if (bluePixels > threshold) {
487 if (greenPixels > threshold) {
491 if (blackPixels > threshold) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
ProximityInfo.java 250 final int threshold = (int) (defaultWidth * SEARCH_DISTANCE); local
251 final int thresholdSquared = threshold * threshold;
276 We want to select the cells which center falls between the top of the key minus the threshold,
277 and the bottom of the key plus the threshold.
278 topPixelWithinThreshold is key.mY - threshold, and bottomPixelWithinThreshold is
279 key.mY + key.mHeight + threshold.
293 v |---+---+--threshold--|-+---+---+---+---+---| |
296 | | | |***|**########------------------- key.mY | within the threshold. We align that on
332 final int topPixelWithinThreshold = keyY - threshold;
    [all...]

Completed in 813 milliseconds

1 2 3 45 6 7 8 91011>>