HomeSort by relevance Sort by last modified time
    Searched defs:threshold (Results 151 - 175 of 714) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/jsoncpp/src/lib_json/
json_reader.cpp 526 Value::LargestUInt threshold = maxIntegerValue / 10; local
535 if (value >= threshold) {
540 if (value > threshold || current != token.end_ ||
  /external/libxaac/decoder/drc_src/
impd_parametric_drc_dec.h 86 FLOAT32 threshold; member in struct:ia_parametric_drc_type_lim_params_struct_t
  /external/mesa3d/src/amd/addrlib/r800/
ciaddrlib.cpp 909 * Return the threshold of switching to P4_* instead of P16_* for PRT resources
914 UINT_32 threshold; local
919 threshold = 32;
924 threshold = 16;
928 threshold = 8;
934 threshold = 16;
940 threshold = 32;
944 return threshold;
    [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/tcpdump/
print-slow.c 152 uint8_t threshold[8]; member in struct:slow_oam_link_event_t
676 "\n\t Errored Threshold %" PRIu64
682 EXTRACT_64BITS(&tlv.slow_oam_link_event->threshold),
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
AudioTest.java 67 private final int threshold; field in class:AudioTest
94 threshold = getIntPreference(context, R.string.preference_audio_in_threshold, 5000);
143 return threshold;
362 while (noisyAtFrame < wave.length && wave[noisyAtFrame] < threshold)
  /frameworks/base/core/tests/coretests/src/android/hardware/display/
VirtualDisplayTest.java 478 // We use this threshold in case the display is being letterboxed when
484 final int threshold = width * height / 4; local
485 if (bluePixels > threshold) {
489 if (greenPixels > threshold) {
493 if (blackPixels > threshold) {
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
AccessibilityGestureDetector.java 176 // recognition threshold.
182 // the user moves more than the detection threshold.
187 // This is the calculated movement threshold used track if the user is still
203 // Time threshold used to determine if an interaction is a gesture or not.
214 // Time threshold used to determine if a gesture should be cancelled. If
285 // If the pointer has moved more than the threshold,
306 final long threshold = mGestureStarted ? local
312 if (timeDelta > threshold) {
495 // the delimiter. In turn, this sharper angle achieves the splitting threshold
  /libcore/ojluni/src/main/java/java/util/
Hashtable.java 145 * The table is rehashed when its size exceeds this threshold. (The
150 private int threshold; field in class:Hashtable
191 // Android-changed: Ignore loadFactor when calculating threshold from initialCapacity
192 // threshold = (int)Math.min(initialCapacity * loadFactor, MAX_ARRAY_SIZE + 1);
193 threshold = (int)Math.min(initialCapacity, MAX_ARRAY_SIZE + 1);
406 threshold = (int)Math.min(newCapacity * loadFactor, MAX_ARRAY_SIZE + 1);
425 if (count >= threshold) {
426 // Rehash the table if the threshold is exceeded
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
ProximityInfo.java 248 final int threshold = (int) (defaultWidth * SEARCH_DISTANCE); local
249 final int thresholdSquared = threshold * threshold;
274 We want to select the cells which center falls between the top of the key minus the threshold,
275 and the bottom of the key plus the threshold.
276 topPixelWithinThreshold is key.mY - threshold, and bottomPixelWithinThreshold is
277 key.mY + key.mHeight + threshold.
291 v |---+---+--threshold--|-+---+---+---+---+---| |
294 | | | |***|**########------------------- key.mY | within the threshold. We align that on
330 final int topPixelWithinThreshold = keyY - threshold;
    [all...]
  /system/core/logd/
LogBuffer.cpp 696 // persistent and hits a further threshold, kill the reader thread.
770 // Calculate threshold as 12.5% of available storage
771 size_t threshold = log_buffer_size(id) / 8; local
776 threshold);
781 threshold);
    [all...]
  /system/extras/ANRdaemon/
ANRdaemon.cpp 79 * Logging on/off threshold.
159 * If tracing is on, increase the idle threshold by 1.00% so that we do not
161 * threshold.
165 int threshold = idle_threshold + (tracing?100:0); local
170 return (diff_idle * 10000 < diff_total * threshold);
511 " -t N cpu threshold for logging to start "
540 int threshold; local
555 threshold = atoi(optarg);
556 if (threshold > 9999 || threshold < 5000)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lgc.c 911 ** cycle will start when memory use hits threshold
914 l_mem debt, threshold; local
916 threshold = (g->gcpause < MAX_LMEM / estimate) /* overflow? */
919 debt = -cast(l_mem, threshold - gettotalbytes(g));
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
gcmodule.c 34 int threshold; /* collection threshold */ member in struct:gc_generation
44 /* PyGC_Head, threshold, count */
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
gcmodule.c 34 int threshold; /* collection threshold */ member in struct:gc_generation
44 /* PyGC_Head, threshold, count */
    [all...]
  /external/ImageMagick/MagickCore/
effect.c 94 #include "MagickCore/threshold.h"
2257 threshold; local
    [all...]
  /external/ImageMagick/MagickWand/
operation.c 785 if (LocaleCompare("dissimilarity-threshold",option+1) == 0)
2196 threshold; local
3379 threshold; local
    [all...]
  /external/adhd/scripts/audio_tuning/frontend/
audio.js 69 * threshold - The value above which the compression starts, in dB.
210 * drc.[0-2].{f, enable, threshold, knee, ratio, attack, release, boost}
231 set_config('drc', i, 'threshold', INIT_DRC_THRESHOLD);
633 // This threshold is experimentally determined. It depends on the the gain
703 comp.threshold.value = INIT_DRC_THRESHOLD;
723 case 'threshold':
1159 use_config('drc', index, 'threshold', v);
1196 'f': f_slider, property in class:drc_card.sliders
    [all...]
  /external/annotation-tools/asmx/src/org/objectweb/asm/
ClassWriter.java 264 * The threshold of the constant pool's hash table.
266 int threshold; field in class:ClassWriter
552 threshold = (int) (0.75d * items.length);
    [all...]
  /external/deqp/modules/egl/
teglImageFormatTests.cpp 447 float threshold = 0.05f; local
448 bool match = tcu::fuzzyCompare(log, "ComparisonResult", "Image comparison result", refSurface, screen, threshold, tcu::COMPARE_LOG_RESULT);
698 const tcu::IVec4 threshold (2 * (tcu::IVec4(1) << (tcu::IVec4(8) - bitDepth)));
699 const tcu::RGBA threshold8 ((deUint8)(de::clamp(threshold[0], 0, 255)), (deUint8)(de::clamp(threshold[1], 0, 255)), (deUint8)(de::clamp(threshold[2], 0, 255)), (deUint8)(de::clamp(threshold[3], 0, 255)));
    [all...]
  /external/deqp/modules/gles2/functional/
es2fDepthStencilTests.cpp 620 tcu::RGBA threshold = m_context.getRenderTarget().getPixelFormat().getColorThreshold(); local
702 bool compareOk = tcu::pixelThresholdCompare(m_testCtx.getLog(), "CompareResult", "Image Comparison Result", *m_refColorBuffer, renderedImg, threshold,
    [all...]
es2fTextureSpecificationTests.cpp 505 tcu::UVec4 threshold = computeCompareThreshold(m_context.getRenderTarget().getPixelFormat(), m_texFormat); local
506 bool isOk = tcu::intThresholdCompare(m_testCtx.getLog(), "Result", "Image comparison result", reference.getAccess(), result.getAccess(), threshold,
546 const float threshold = 0.02f; local
547 isOk = tcu::fuzzyCompare(m_testCtx.getLog(), "Result", (string("Image comparison result: ") + de::toString((tcu::CubeFace)face)).c_str(), reference, result, threshold,
    [all...]
es2fTextureUnitTests.cpp 431 const float threshold = 0.1f; local
440 if (de::abs(lodMax) < threshold || (lodMax > 0.0f && de::abs(deFloatFrac(lodMax) - 0.5f) < threshold) ||
441 de::abs(lodMin) < threshold || (lodMin > 0.0f && de::abs(deFloatFrac(lodMin) - 0.5f) < threshold) ||
813 const float threshold = 0.001f; local
814 bool isOk = tcu::fuzzyCompare(log, "ComparisonResult", "Image comparison result", refFrame, gles2Frame, threshold, tcu::COMPARE_LOG_RESULT);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fDepthStencilTests.cpp 620 tcu::RGBA threshold = m_context.getRenderTarget().getPixelFormat().getColorThreshold(); local
702 bool compareOk = tcu::pixelThresholdCompare(m_testCtx.getLog(), "CompareResult", "Image Comparison Result", *m_refColorBuffer, renderedImg, threshold,
    [all...]

Completed in 651 milliseconds

1 2 3 4 5 67 8 91011>>