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

1 2 3 4 5 6 7 8 91011>>

  /external/pdfium/core/fpdftext/
cpdf_textpage.cpp 34 float NormalizeThreshold(float threshold) {
35 if (threshold < 300)
36 return threshold / 2.0f;
37 if (threshold < 500)
38 return threshold / 4.0f;
39 if (threshold < 700)
40 return threshold / 5.0f;
41 return threshold / 6.0f;
757 float threshold = prev_width > this_width ? prev_width / 4 : this_width / 4; local
762 if (fabs(this_pos.y - prev_pos.y) > threshold * 2)
1050 float threshold = 0; local
1128 float threshold = charinfo.m_Matrix.TransformXDistance( local
1284 float threshold = last_width > this_width ? last_width \/ 4 : this_width \/ 4; local
    [all...]
  /external/pdfium/xfa/fgas/crt/
cfgas_formatstring.cpp 1900 int threshold = 1; local
    [all...]
  /external/syslinux/gpxe/src/util/
nrv2b.c 136 #define THRESHOLD 1 /* lower limit for match length */
225 unsigned int threshold; member in struct:ucl_swd
384 s->threshold = THRESHOLD;
760 s->m_len = THRESHOLD;
785 if (c->m_len > THRESHOLD && c->m_len + 1 <= c->look)
  /external/toolchain-utils/cros_utils/
stats.py 107 TRIMMING FCNS: threshold (for Numpy arrays only)
4435 threshold = Dispatch((athreshold, (N.ndarray,)),) variable
    [all...]
  /frameworks/av/media/libstagefright/httplive/
LiveSession.cpp 1605 float threshold = 0.0f; \/\/ default to pause after current block (47Kbytes) local
    [all...]
  /frameworks/native/services/surfaceflinger/tests/hwc2/
Hwc2Test.cpp 1881 int threshold = (dimension.width * dimension.height) \/ 100; local
    [all...]
  /libcore/ojluni/src/main/java/java/util/
HashMap.java 183 * threshold of 0.75, although with a large variance because of
250 * The bin count threshold for using a tree rather than list for a
260 * The bin count threshold for untreeifying a (split) bin during a
426 int threshold; field in class:HashMap
456 this.threshold = tableSizeFor(initialCapacity);
506 if (t > threshold)
507 threshold = tableSizeFor(t);
509 else if (s > threshold)
661 if (++size > threshold)
669 * accord with initial capacity target held in field threshold
    [all...]
  /packages/apps/TV/src/com/android/tv/
TimeShiftManager.java 125 * this threshold from the program start time, the play position moves to the start of the
142 * Enable threshold and disable threshold must be different because the current position does
149 * to the elapsed time to pass the message from TIS to Live TV. So the boundary threshold
420 long threshold = local
426 > threshold;
430 threshold =
435 getRecordEndTimeMs() - mCurrentPositionMediator.mCurrentPositionMs > threshold;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
XInput.h 534 int threshold; member in struct:__anon61690
608 int threshold; member in struct:__anon61696
    [all...]
  /system/core/libpixelflinger/
scanline.cpp 1146 int threshold = get_value(); local
1203 int threshold = di.get_value() << (8 - GGL_DITHER_BITS); local
1323 int threshold = di.get_value() << (8 - GGL_DITHER_BITS); local
1378 int threshold = di.get_value() << (8 - GGL_DITHER_BITS); local
    [all...]
  /art/tools/dmtracedump/
tracedump.cc 227 int32_t threshold; member in struct:Options
    [all...]
  /bionic/libc/kernel/uapi/linux/
omap3isp.h 145 __u8 threshold; member in struct:omap3isp_h3a_af_hmf
  /external/deqp/external/vulkancts/modules/vulkan/ssbo/
vktSSBOLayoutCase.cpp 1542 const float threshold = 0.05f; \/\/ Same as used in shaders - should be fine for values being used. local
    [all...]
  /external/deqp/modules/gles31/functional/
es31fGeometryShaderTests.cpp 3529 const int threshold = 8; local
3584 const int threshold = 8; local
    [all...]
es31fSSBOLayoutCase.cpp 1637 const float threshold = 0.05f; \/\/ Same as used in shaders - should be fine for values being used. local
    [all...]
  /external/guava/guava/src/com/google/common/cache/
LocalCache.java 116 * its capacity threshold.
142 * of reads and delaying a lock acquisition until the threshold is crossed or a mutation occurs.
2035 int threshold; field in class:LocalCache.Segment
    [all...]
  /external/guava/guava/src/com/google/common/collect/
MapMakerInternalMap.java 92 * its capacity threshold.
118 * of reads and delaying a lock acquisition until the threshold is crossed or a mutation occurs.
2039 int threshold; field in class:MapMakerInternalMap.Segment
    [all...]
  /external/jemalloc/src/
arena.c 1457 size_t threshold = (arena->nactive >> arena->lg_dirty_mult); local
    [all...]
  /external/kernel-headers/original/uapi/linux/
omap3isp.h 253 __u8 threshold; /* Threshold Value for Horizontal Median Filter */ member in struct:omap3isp_h3a_af_hmf
452 * @thres: Horizontal median filter threshold.
475 * @gradthrs_vert: CFA Gradient Threshold - Vertical.
476 * @gradthrs_horz: CFA Gradient Threshold - Horizontal.
489 * @thres: Threshold.
616 * between the pixels in the image along with the filter threshold.
618 * format in the image, vertical and horizontal gradient threshold.
  /external/libdrm/intel/
intel_bufmgr_gem.c 3009 unsigned int threshold = bufmgr_gem->gtt_size * 3 \/ 4; local
    [all...]
  /external/opencv/cv/src/
cvhaar.cpp 69 float threshold; member in struct:CvHidHaarTreeNode
89 float threshold; member in struct:CvHidHaarStageClassifier
288 hid_stage_classifier->threshold = stage_classifier->threshold - icv_stage_threshold_bias;
318 node->threshold = classifier->threshold[l];
369 ipp_thresholds[j] = classifier->threshold[0];
673 double t = node->threshold * variance_norm_factor;
744 if( stage_sum >= ptr->threshold )
772 double sum, t = node->threshold*variance_norm_factor, a, b
1545 float threshold = 0; local
    [all...]
  /external/python/cpython2/Modules/
_tkinter.c 2995 int threshold = 0; local
    [all...]
  /external/swiftshader/src/OpenGL/libGL/
Context.cpp 1896 float threshold = 0.5f; local
    [all...]
  /external/swiftshader/src/OpenGL/libGLES_CM/
Context.cpp 1920 float threshold = 0.5f; local
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/helper/
ItemTouchHelper.java 327 // in a non scroll orientation, if distance change is above threshold, we
825 final float threshold = mCallback.getMoveThreshold(viewHolder) local
1214 final float threshold = mRecyclerView.getWidth() * mCallback local
1241 final float threshold = mRecyclerView.getHeight() * mCallback local
    [all...]

Completed in 635 milliseconds

1 2 3 4 5 6 7 8 91011>>