HomeSort by relevance Sort by last modified time
    Searched refs:threshold (Results 276 - 300 of 1091) sorted by null

<<11121314151617181920>>

  /frameworks/wilhelm/src/android/
AudioPlayer_to_android.h 82 SLpermille threshold);
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/big/
calibrate_test.go 10 // used to manually fine-tune the threshold constant. The
32 // given Karatsuba threshold th.
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/big/
calibrate_test.go 7 // used to manually fine-tune the threshold constant. The
29 // given Karatsuba threshold th.
  /prebuilts/go/darwin-x86/src/math/big/
calibrate_test.go 7 // used to manually fine-tune the threshold constant. The
29 // given Karatsuba threshold th.
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/big/
calibrate_test.go 10 // used to manually fine-tune the threshold constant. The
32 // given Karatsuba threshold th.
  /prebuilts/go/linux-x86/src/cmd/compile/internal/big/
calibrate_test.go 7 // used to manually fine-tune the threshold constant. The
29 // given Karatsuba threshold th.
  /prebuilts/go/linux-x86/src/math/big/
calibrate_test.go 7 // used to manually fine-tune the threshold constant. The
29 // given Karatsuba threshold th.
  /external/autotest/client/tests/monotonic_time/src/
time_test.c 32 long threshold = 0; variable
41 { "threshold", required_argument, 0, 't' },
49 printf("usage: %s [-hv] [-c <cpu_set>] [-d duration] [-t threshold] "
58 " -t,--threshold error threshold (default: 0)\n"
171 if (delta < 0 && delta < -threshold) { \
346 threshold = strtol(optarg, NULL, 0);
  /external/autotest/client/tests/tsc/src/
checktsc.c 19 long threshold = DEFAULT_THRESHOLD; variable
28 { "threshold", required_argument, 0, 't' },
36 printf("usage: %s [-hsv] [-c <cpu_set>] [-t threshold]\n", program);
47 printf(" -t,--threshold TSC skew threshold (default: %d cycles)\n",
298 if (llabs(delta) > threshold) {
350 threshold = strtol(optarg, NULL, 0);
  /external/deqp/framework/common/
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/eigen/Eigen/src/IterativeLinearSolvers/
ConjugateGradient.h 53 RealScalar threshold = tol*tol*rhsNorm2; local
55 if (residualNorm2 < threshold)
77 if(residualNorm2 < threshold)
  /external/opencv3/modules/photo/src/
denoise_tvl1.cpp 45 #define ABSCLIP(val,threshold) MIN(MAX((val),-(threshold)),(threshold))
  /libcore/ojluni/src/test/java/util/stream/
TestDoubleSumAverage.java 146 * Compute the ulp difference of two double values and compare against an error threshold.
148 private static int compareUlpDifference(double expected, double computed, double threshold) {
162 if (ulpDifference > threshold) {
164 ulpDifference, threshold);
  /external/opencv3/modules/cudaobjdetect/src/cuda/
hog.cu 265 float* block_hists, float threshold)
284 elem = ::min(elem * scale, threshold);
296 int height, int width, float* block_hists, float threshold)
309 normalize_hists_kernel_many_blocks<32, nblocks><<<grid, threads>>>(block_hist_size, img_block_width, block_hists, threshold);
311 normalize_hists_kernel_many_blocks<64, nblocks><<<grid, threads>>>(block_hist_size, img_block_width, block_hists, threshold);
313 normalize_hists_kernel_many_blocks<64, nblocks><<<grid, threads>>>(block_hist_size, img_block_width, block_hists, threshold);
315 normalize_hists_kernel_many_blocks<256, nblocks><<<grid, threads>>>(block_hist_size, img_block_width, block_hists, threshold);
317 normalize_hists_kernel_many_blocks<512, nblocks><<<grid, threads>>>(block_hist_size, img_block_width, block_hists, threshold);
337 float free_coef, float threshold, float* confidences)
368 float* coefs, float free_coef, float threshold, float *confidences
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
ProgressBar.java 53 private float threshold; field in class:ProgressBar
321 /** Will make this progress bar snap to the specified values, if the knob is within the threshold. */
322 public void setSnapToValues (float[] values, float threshold) {
324 this.threshold = threshold;
331 if (Math.abs(value - snapValues[i]) <= threshold) return snapValues[i];
  /external/opencv3/modules/cudaimgproc/perf/
perf_hough.cpp 92 const int threshold = 300; local
107 cv::Ptr<cv::cuda::HoughLinesDetector> hough = cv::cuda::createHoughLinesDetector(rho, theta, threshold);
121 TEST_CYCLE() cv::HoughLines(src, cpu_lines, rho, theta, threshold);
141 const int threshold = 100; local
170 TEST_CYCLE() cv::HoughLinesP(mask, cpu_lines, rho, theta, threshold, minLineLength, maxLineGap);
  /external/opencv3/modules/objdetect/src/opencl/
objdetect_hog.cl 160 const float threshold, __local float *squares)
186 elem = min(elem, threshold);
255 __global float* block_hists, const float threshold, __local float *squares)
274 elem = min(elem * scale, threshold);
296 float free_coef, float threshold, __global uchar* labels)
356 labels[gidY * img_win_width + gidX] = (product + free_coef >= threshold);
369 float free_coef, float threshold, __global uchar* labels)
426 labels[gidY * img_win_width + gidX] = (product + free_coef >= threshold);
438 float free_coef, float threshold, __global uchar* labels)
496 labels[gidY * img_win_width + gidX] = (product + free_coef >= threshold);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFramebufferBlitTests.cpp 148 // Use pixel-threshold compare for rect cases since 1px off will mean failure.
149 tcu::RGBA threshold = TestCase::m_context.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(7,7,7,7); local
150 return tcu::pixelThresholdCompare(m_testCtx.getLog(), "Result", "Image comparison result", reference, result, threshold, tcu::COMPARE_LOG_RESULT);
189 const tcu::RGBA threshold = TestCase::m_context.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(7,7,7,7); local
195 const bool signConfig = tcu::compareThreshold(baseColor, cellColorA, threshold);
220 const bool isValidColor = tcu::compareThreshold(color, cellColorA, threshold) || tcu::compareThreshold(color, cellColorB, threshold);
249 if (tcu::compareThreshold(color, cellColorA, threshold))
251 else if (tcu::compareThreshold(color, cellColorB, threshold))
260 if (tcu::compareThreshold(color, cellColorA, threshold))
432 tcu::RGBA threshold; local
    [all...]
es3fRandomFragmentOpTests.cpp 377 const tcu::UVec4 threshold = getCompareThreshold(); member in namespace:deqp::gles3::Functional
390 tcu::RGBA(threshold.x(), threshold.y(), threshold.z(), threshold.w()),
399 threshold,
420 return format.getColorThreshold().toIVec().asUint() + tcu::UVec4(2); // Default threshold.
423 * tcu::UVec4(5) + tcu::UVec4(2); // \note Non-scientific ad hoc formula. Need big threshold when few color bits; especially multiple blendings bring extra inaccuracy.
  /external/ImageMagick/www/api/
feature.php 89 <dd>percentage of edge pixels in the lower threshold. </dd>
93 <dd>percentage of edge pixels in the upper threshold. </dd>
147 const size_t height,const size_t threshold,ExceptionInfo *exception)
165 <dt>threshold</dt>
166 <dd>the line count threshold. </dd>
  /external/mesa3d/src/gallium/state_trackers/vega/
bezier.c 252 float offset, float threshold)
255 const float max_dist_line = threshold*offset*offset;
256 const float max_dist_normal = threshold*offset;
332 float offset, float threshold)
440 return good_offset(orig, shifted, offset, threshold);
522 float threshold)
542 threshold *= 1.5;
543 if (threshold > 2.)
547 res = shift(b, o, normal_len, threshold);
567 enum shift_result res = shift(b, o, normal_len, threshold);
    [all...]
  /external/opencv3/modules/objdetect/src/
cascadedetect.hpp 178 float threshold; // for ordered features only member in struct:cv::CascadeClassifierImpl::Data::DTreeNode
192 float threshold; member in struct:cv::CascadeClassifierImpl::Data::Stage
199 : featureIdx(_featureIdx), threshold(_threshold), left(_left), right(_right) {}
202 float threshold; member in struct:cv::CascadeClassifierImpl::Data::Stump
529 idx = val < node.threshold ? node.left : node.right;
536 if( sum < stage.threshold )
578 if( sum < stage.threshold )
606 tmp += value < stump.threshold ? stump.left : stump.right;
609 if( tmp < stage.threshold )
648 if( tmp < stage.threshold )
    [all...]
  /external/deqp/modules/gles2/functional/
es2fRandomFragmentOpTests.cpp 377 const tcu::UVec4 threshold = getCompareThreshold(); member in namespace:deqp::gles2::Functional
390 tcu::RGBA(threshold.x(), threshold.y(), threshold.z(), threshold.w()),
399 threshold,
420 return format.getColorThreshold().toIVec().asUint() + tcu::UVec4(6); // Default threshold.
423 * tcu::UVec4(5) + tcu::UVec4(2); // \note Non-scientific ad hoc formula. Need big threshold when few color bits; especially multiple blendings bring extra inaccuracy.
  /external/eigen/Eigen/src/LU/
FullPivLU.h 154 * For that, it uses the threshold value that you can control by calling
179 * For that, it uses the threshold value that you can control by calling
238 /** Allows to prescribe a threshold to be used by certain methods, such as rank(),
242 * When it needs to get the threshold value, Eigen calls threshold(). By default, this
243 * uses a formula to automatically determine a reasonable threshold.
247 * \param threshold The new value to use as the threshold.
250 * \f$ \vert pivot \vert \leqslant threshold \times \vert maxpivot \vert \f$
255 FullPivLU& setThreshold(const RealScalar& threshold)
280 RealScalar threshold() const function in class:Eigen::FullPivLU
    [all...]
  /external/opencv3/modules/calib3d/src/
ptsetreg.cpp 81 : cb(_cb), modelPoints(_modelPoints), threshold(_threshold), confidence(_confidence), maxIters(_maxIters)
230 goodCount = findInliers( m1, m2, model_i, err, mask, threshold );
265 double threshold; member in class:cv::RANSACPointSetRegistrator
471 const float threshold = 0.996f; local
495 if( num*num > threshold*threshold*denom )

Completed in 3257 milliseconds

<<11121314151617181920>>