HomeSort by relevance Sort by last modified time
    Searched refs:threshold (Results 76 - 100 of 364) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SsaRenamer.java 76 private int threshold; field in class:SsaRenamer
111 threshold = 0;
147 * Constructs an instance of the renamer with threshold set
155 threshold = thresh;
239 * Returns true if this SSA register is below the specified threshold.
241 * for registers above a certain threshold.
244 * @return {@code true} if its register number is below the threshold
247 return ssaReg < threshold;
541 threshold == 0) {
550 threshold == 0)
    [all...]
  /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)
callgraph_container.cpp 304 void arc_recorder::process_children(cg_symbol & sym, double threshold)
324 sym.total_caller_count[0]) < threshold)
334 sym.total_callee_count[0]) >= threshold)
343 process(count_array_t total, double threshold,
353 // threshold out the main symbol if needed
354 if (op_ratio(sym.sample.counts[0], total[0]) < threshold)
380 process_children(sym, threshold);
396 extra_images const & extra, bool debug_info, double threshold,
422 recorder.process(total_count, threshold / 100.0, sym_filter);
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensorverification/
JitterVerificationTest.java 103 private static JitterVerification getVerification(int threshold, long ... timestamps) {
108 JitterVerification verification = new JitterVerification(threshold);
  /cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/
ThresholdDifferenceComparer.java 29 * Compares two images to see if each pixel is the same, within a certain threshold value
37 * @param threshold Each pixel is compared against each other, in each of the individual
39 * threshold, then this test will fail.
41 public ThresholdDifferenceComparer(int threshold) {
42 mThreshold = threshold;
  /external/deqp/framework/common/
tcuRGBA.cpp 103 bool compareThresholdMasked (RGBA a, RGBA b, RGBA threshold, deUint32 cmpMask)
105 return computeAbsDiffMasked(a, b, cmpMask).isBelowThreshold(threshold);
tcuRGBA.hpp 137 inline bool compareThreshold (RGBA a, RGBA b, RGBA threshold)
140 return computeAbsDiff(a, b).isBelowThreshold(threshold);
152 bool compareThresholdMasked (RGBA a, RGBA b, RGBA threshold, deUint32 cmpMask);
  /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/chromium_org/chrome/browser/history/
history_database.h 149 // Retrieves/Updates early expiration threshold, which specifies the earliest
153 virtual void UpdateEarlyExpirationThreshold(base::Time threshold);
  /external/chromium_org/content/test/
image_decoder_test.cc 28 // on |file_selection| and the |threshold| for the file size.
31 const int64 threshold) {
37 return (file_selection == TEST_SMALLER) == (image_size > threshold);
152 const int64 threshold) {
158 if (!ShouldSkipFile(*i, file_selection, threshold))
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
Shape.h 76 static PassOwnPtr<Shape> createRasterShape(Image*, float threshold, const LayoutRect& imageRect, const LayoutRect& marginRect, WritingMode, float margin);
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
DynamicsCompressorNode.h 53 AudioParam* threshold() { return m_threshold.get(); } function in class:blink::FINAL
  /external/chromium_org/tools/flakiness/
is_flaky.py 7 if the failure rate is higher than the specified threshold, but is not 100%."""
19 parser.add_argument('--threshold', default=0.05, type=float,
51 if flakiness > options.threshold:
is_flaky_test.py 37 threshold = 0.3 variable in class:IsFlakyTest.mock_load_options.MockOptions
  /external/chromium_org/content/test/data/media/
webrtc_test_audio.js 78 var threshold = MAX_AUDIO_OUTPUT_ENERGY * 0.7;
80 threshold = MAX_AUDIO_OUTPUT_ENERGY * 0.6;
83 // Detect when we have been been over the threshold and is going back again
86 if (currentlyOverThreshold && samples[i] < threshold)
88 currentlyOverThreshold = samples[i] >= threshold;
  /external/opencv/cv/src/
cvhough.cpp 79 threshold is the minimum number of pixels in the feature for it
86 int threshold, CvSeq *lines, int linesMax )
147 if( accum[base] > threshold &&
192 float rho, float theta, int threshold,
240 threshold = MIN( threshold, 255 );
258 vi.value = threshold;
339 if( caccum[ri * tn + ti > threshold] )
348 icvHoughLinesStandard( img, rho, theta, threshold, lines, linesMax );
360 if( caccum[ri * tn + ti] > threshold )
    [all...]
  /external/chromium_org/remoting/webapp/
toolbar.js 151 var threshold = 50;
152 return (x >= this.stubLeft_ - threshold &&
153 x <= this.stubRight_ + threshold &&
154 y < threshold);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_context.h 101 void draw_wide_point_threshold(struct draw_context *draw, float threshold);
105 void draw_wide_line_threshold(struct draw_context *draw, float threshold);
  /external/llvm/bindings/ocaml/transforms/scalar/
scalar_opts_ocaml.c 59 CAMLprim value llvm_add_scalar_repl_aggregation_with_threshold(value threshold,
61 LLVMAddScalarReplAggregatesPassWithThreshold(PM, Int_val(threshold));
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_context.h 101 void draw_wide_point_threshold(struct draw_context *draw, float threshold);
105 void draw_wide_line_threshold(struct draw_context *draw, float threshold);
  /external/opencv/cv/include/
cvtypes.h 342 float* threshold; member in struct:CvHaarClassifier
352 float threshold; member in struct:CvHaarStageClassifier
  /external/chromium_org/content/browser/renderer_host/
overscroll_controller.cc 131 // after the threshold.
171 float ratio, threshold; local
175 threshold = GetOverscrollConfig(OVERSCROLL_CONFIG_HORIZ_THRESHOLD_COMPLETE);
178 threshold = GetOverscrollConfig(OVERSCROLL_CONFIG_VERT_THRESHOLD_COMPLETE);
181 return ratio >= threshold;
312 // Do not include the threshold amount when sending the deltas to the
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
FFTFrame.cpp 119 double threshold = (i > 16) ? 5.0 : 2.0; local
121 if (magdbdiff < -threshold && mag1db < 0.0) {
124 } else if (magdbdiff > threshold && mag2db < 0.0) {
  /external/chromium_org/third_party/freetype/src/autofit/
afangles.c 272 FT_Pos threshold )
302 /* `threshold'; this is very primitive and might not yield */
307 if ( table[i].org - cur_val > threshold ||
313 if ( table[i].org - cur_val <= threshold &&
  /external/eigen/Eigen/src/IterativeLinearSolvers/
ConjugateGradient.h 53 RealScalar threshold = tol*tol*rhsNorm2; local
55 if (residualNorm2 < threshold)
77 if(residualNorm2 < threshold)

Completed in 1185 milliseconds

1 2 34 5 6 7 8 91011>>