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

1 23 4 5 6 7 8 91011>>

  /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:__anon32225::options
    [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);
  /external/aac/libPCMutils/src/
limiter.cpp 98 FIXP_PCM threshold; member in struct:TDLimiter
117 INT_PCM threshold,
161 limiter->threshold = (FIXP_PCM)threshold;
239 FIXP_DBL threshold = FX_PCM2FX_DBL(limiter->threshold)>>TDL_GAIN_SCALING; local
288 /* set threshold as lower border to save calculations in running maximum algorithm */
289 tmp = fMax(tmp, threshold);
316 if (max > threshold) {
317 gain = fDivNorm(threshold, max)>>1
    [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 126 double threshold = (channel == installer::kChromeChannelStable) ? 0.01 : 0.10; local
132 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
372 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 120 double threshold = (i > 16) ? 5.0 : 2.0; local
122 if (magdbdiff < -threshold && mag1db < 0.0) {
125 } 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/third_party/webrtc/modules/audio_processing/utility/
delay_estimator.c 526 // i) an adaptive threshold |minimum_probability|, or
533 // The "hard" threshold can't be lower than 17 (in Q9).
537 int32_t threshold = value_best_candidate + kProbabilityOffset; local
538 if (threshold < kProbabilityLowerLimit) {
539 threshold = kProbabilityLowerLimit;
541 if (self->minimum_probability > threshold) {
542 self->minimum_probability = threshold;
  /external/deqp/modules/gles2/functional/
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);
es2fTextureSizeTests.cpp 124 tcu::RGBA threshold = m_renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(7,7,7,7); local
157 bool isOk = compareImages(log, referenceFrame, renderedFrame, threshold);
267 tcu::RGBA threshold = m_renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(7,7,7,7); local
301 return compareImages(log, referenceFrame, renderedFrame, threshold);
es2fTextureWrapTests.cpp 171 tcu::RGBA threshold = m_renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() local
217 bool isOk = compareImages(log, referenceFrame, renderedFrame, threshold);
  /external/deqp/modules/gles3/functional/
es3fShaderFragDataTests.cpp 64 static bool compareSingleColor (tcu::TestLog& log, const tcu::Surface& surface, tcu::RGBA expectedColor, tcu::RGBA threshold)
69 log << TestLog::Message << "Expecting " << expectedColor << " with threshold " << threshold << TestLog::EndMessage;
76 const bool isOk = compareThreshold(resultColor, expectedColor, threshold);
201 const tcu::RGBA threshold = renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(1,1,1,1); local
207 isOk = compareSingleColor(m_testCtx.getLog(), result, tcu::RGBA::green, threshold);
319 const tcu::RGBA threshold = renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(1,1,1,1); local
330 if (!compareSingleColor(m_testCtx.getLog(), result, ndx == 0 ? tcu::RGBA::green : tcu::RGBA::red, threshold))
es3fTextureSizeTests.cpp 124 tcu::RGBA threshold = m_renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(7,7,7,7); local
157 bool isOk = compareImages(log, referenceFrame, renderedFrame, threshold);
267 tcu::RGBA threshold = m_renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(7,7,7,7); local
301 return compareImages(log, referenceFrame, renderedFrame, threshold);
es3fTextureSwizzleTests.cpp 151 tcu::RGBA threshold = m_context.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(1,1,1,1); local
216 bool isOk = compareImages(log, referenceFrame, renderedFrame, threshold);
  /external/deqp/modules/gles31/functional/
es31fTextureFormatTests.cpp 179 tcu::RGBA threshold = m_renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(1,1,1,1); local
222 return compareImages(log, (string("LayerFace" + de::toString(layerFaceNdx))).c_str(), (string("Layer-face " + de::toString(layerFaceNdx))).c_str(), referenceFrame, renderedFrame, threshold);
317 tcu::RGBA threshold = m_renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(1,1,1,1); local
355 bool isOk = compareImages(log, referenceFrame, renderedFrame, threshold);
  /external/deqp/modules/gles31/stress/
es31sTessellationGeometryInteractionTests.cpp 391 const int threshold = 8; local
395 if (color.getGreen() < 255 - threshold || color.getBlue() > threshold)
  /external/e2fsprogs/e2fsck/
dirinfo.c 42 unsigned int threshold; local
50 "numdirs_threshold", 0, 0, &threshold);
55 (threshold && num_dirs <= 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/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/pdfium/core/src/fpdftext/
fpdf_text_search.cpp 107 FX_FLOAT threshold = last_width > this_width ? last_width / 4 : this_width / 4; local
113 if (FXSYS_fabs(y) > threshold * 2) {
116 threshold = (FX_FLOAT)(nLastWidth > nThisWidth ? nLastWidth : nThisWidth);
117 threshold = threshold > 400 ? (threshold < 700 ? threshold / 4 : threshold / 5) : (threshold / 2);
118 threshold *= nLastWidth > nThisWidth ? FXSYS_fabs(pPrevObj->GetFontSize()) : FXSYS_fabs(pObj->GetFontSize()) (…)
227 FX_FLOAT threshold = 0; local
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/pshinter/
pshglob.c 419 /* The blue threshold is the font units distance under */
428 FT_Int threshold = blues->blue_shift; local
431 while ( threshold > 0 && FT_MulFix( threshold, scale ) > 32 )
432 threshold--;
434 blues->blue_threshold = threshold;

Completed in 823 milliseconds

1 23 4 5 6 7 8 91011>>