HomeSort by relevance Sort by last modified time
    Searched defs:threshold (Results 26 - 50 of 218) sorted by null

12 3 4 5 6 7 8 9

  /external/chromium_org/content/browser/renderer_host/
overscroll_controller.cc 150 // after the threshold.
190 float ratio, threshold; local
194 threshold = GetOverscrollConfig(OVERSCROLL_CONFIG_HORIZ_THRESHOLD_COMPLETE);
197 threshold = GetOverscrollConfig(OVERSCROLL_CONFIG_VERT_THRESHOLD_COMPLETE);
200 return ratio >= threshold;
333 // Do not include the threshold amount when sending the deltas to the
  /external/chromium_org/third_party/skia/src/effects/
SkBitmapAlphaThresholdShader.cpp 39 U8CPU threshold) {
40 SkASSERT(threshold < 256);
41 return SkNEW_ARGS(BATShader, (bitmap, region, threshold));
44 BATShader::BATShader(const SkBitmap& bitmap, SkRegion region, U8CPU threshold)
47 , fThreshold(threshold) {
87 U8CPU threshold) {
88 SkScalar thresh = SkIntToScalar(threshold) / 255;
105 static const char* Name() { return "Bitmap Alpha Threshold"; }
132 const char* threshold; variable
136 "threshold",
    [all...]
  /external/eigen/Eigen/src/IterativeLinearSolvers/
ConjugateGradient.h 52 RealScalar threshold = tol*tol*rhsNorm2; local
63 if(residualNorm2 < threshold)
  /external/oprofile/libpp/
profile_container.cpp 169 double const threshold = choice.threshold / 100.0; local
182 if (percent >= threshold) {
194 profile_container::select_filename(double threshold) const
198 threshold /= 100.0;
239 if (cit->percent >= threshold)
  /external/oprofile/pp/
common_option.cpp 30 double threshold = 0.0; member in namespace:options
55 double handle_threshold(string threshold)
59 if (threshold.length()) {
60 istringstream ss(threshold);
62 cerr << "illegal threshold value: " << threshold
68 cerr << "illegal threshold value: " << threshold
74 cverb << vdebug << "threshold: " << value << endl;;
176 options::threshold = handle_threshold(options::threshold_opt) member in class:__anon27120::options
    [all...]
  /external/skia/src/effects/
SkBitmapAlphaThresholdShader.cpp 39 U8CPU threshold) {
40 SkASSERT(threshold < 256);
41 return SkNEW_ARGS(BATShader, (bitmap, region, threshold));
44 BATShader::BATShader(const SkBitmap& bitmap, SkRegion region, U8CPU threshold)
47 , fThreshold(threshold) {
87 U8CPU threshold) {
88 SkScalar thresh = SkIntToScalar(threshold) / 255;
105 static const char* Name() { return "Bitmap Alpha Threshold"; }
132 const char* threshold; variable
136 "threshold",
    [all...]
  /libcore/luni/src/main/java/java/io/
SerializationHandleMap.java 35 private int threshold; field in class:SerializationHandleMap
39 this.threshold = 21; // Copied from IdentityHashMap.
40 int arraySize = (int) (((long) threshold * 10000) / LOAD_FACTOR);
103 if (++size > threshold) {
121 threshold = (int) ((long) (keys.length) * LOAD_FACTOR / 10000);
  /art/runtime/
thread_list.cc 199 const uint64_t threshold = 1; local
200 if (NsToMs(end - start) > threshold) {
201 LOG(INFO) << "Warning: waited longer than " << threshold
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/
SensorVerificationHelperTest.java 178 double threshold = 0.1; local
180 threshold);
185 threshold = 0.6;
186 result = SensorVerificationHelper.verifyMagnitude(events, expected, threshold);
190 threshold = 0.6;
191 result = SensorVerificationHelper.verifyMagnitude(events, expected, threshold);
195 threshold = 0.1;
196 result = SensorVerificationHelper.verifyMagnitude(events, expected, threshold);
200 threshold = 0.1;
201 result = SensorVerificationHelper.verifyMagnitude(events, expected, threshold);
    [all...]
  /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 119 double threshold = (channel == installer::kChromeChannelStable) ? 0.01 : 0.10; local
125 if (PreReadExperimentIsActive() && (population <= threshold)) {
  /external/chromium_org/chrome/browser/safe_browsing/
browser_feature_extractor.cc 362 base::Time threshold = base::Time::Now() - base::TimeDelta::FromDays(1); local
371 if (it->visit_time < threshold) {
  /external/chromium_org/chrome/browser/thumbnails/
content_analysis_unittest.cc 444 float threshold = AutoSegmentPeaks(profile_info); local
445 EXPECT_GT(threshold, 0); // Not much to expect.
447 // There should be roughly 50% above and below the threshold.
452 std::bind2nd(std::greater<float>(), threshold));
460 threshold = AutoSegmentPeaks(profile_info);
465 std::bind2nd(std::greater<float>(), threshold));
466 EXPECT_LT(above_count, 500); // Negative y expected to fall below threshold.
473 std::bind2nd(std::greater<float>(), threshold));
524 // Make sure that threshold falls somewhere reasonable.
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
FFTFrame.cpp 118 double threshold = (i > 16) ? 5.0 : 2.0; local
120 if (magdbdiff < -threshold && mag1db < 0.0) {
123 } else if (magdbdiff > threshold && mag2db < 0.0) {
  /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/v8/src/
runtime-profiler.cc 246 // Adjust threshold each time we have processed
251 // If the threshold is not already at the minimum
362 int threshold = sampler_threshold_ * threshold_size_factor; local
364 if (LookupSample(function) >= threshold) {
  /external/e2fsprogs/e2fsck/
dirinfo.c 42 unsigned int threshold; local
50 "numdirs_threshold", 0, 0, &threshold);
55 (threshold && num_dirs <= threshold))
  /external/eigen/Eigen/src/QR/
ColPivHouseholderQR.h 179 * For that, it uses the threshold value that you can control by calling
185 RealScalar premultiplied_threshold = internal::abs(m_maxpivot) * threshold();
195 * For that, it uses the threshold value that you can control by calling
208 * For that, it uses the threshold value that you can control by calling
221 * For that, it uses the threshold value that you can control by calling
233 * For that, it uses the threshold value that you can control by calling
260 /** Allows to prescribe a threshold to be used by certain methods, such as rank(),
264 * When it needs to get the threshold value, Eigen calls threshold(). By default, this
265 * uses a formula to automatically determine a reasonable threshold
302 RealScalar threshold() const function in class:Eigen::ColPivHouseholderQR
    [all...]
  /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/jmonkeyengine/engine/src/core/com/jme3/util/
IntMap.java 50 private int size, mask, capacity, threshold; field in class:IntMap
75 this.threshold = (int) (capacity * loadFactor);
140 if (size++ >= threshold){
161 threshold = (int) (newCapacity * loadFactor);
  /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/opencv/cvaux/src/
cvfindhandregion.cpp 69 int low_count; // low threshold
74 float threshold, threshold2; local
83 threshold = (float) (size.height * 3 / 5.);
84 threshold2 = threshold * threshold;
291 int low_count; // low threshold
297 float threshold, threshold2; local
307 threshold = (float) (size.height * 3 / 5.);
308 threshold2 = threshold * threshold;
    [all...]
  /external/qemu/audio/
paaudio.c 91 int threshold; local
93 threshold = conf.divisor ? hw->samples / conf.divisor : 0;
107 if (pa->live > threshold) {
186 int threshold; local
188 threshold = conf.divisor ? hw->samples / conf.divisor : 0;
202 if (pa->dead > threshold) {
568 .descr = "threshold divisor"
  /external/srec/portable/src/
phashtable.c 62 unsigned int threshold; member in struct:PHashTable_t
121 tmp->threshold = (unsigned int)(tmp->args.capacity * tmp->args.maxLoadFactor);
291 table->threshold = (unsigned int)(newCapacity * table->args.maxLoadFactor);
361 if (table->size >= table->threshold)
  /external/v8/src/
runtime-profiler.cc 252 // Adjust threshold each time we have processed
257 // If the threshold is not already at the minimum
337 int threshold = sampler_threshold_ * threshold_size_factor; local
339 if (LookupSample(function) >= threshold) {

Completed in 2945 milliseconds

12 3 4 5 6 7 8 9