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

1 2 3 4 5 6 7 891011>>

  /external/deqp/framework/common/
tcuRGBA.cpp 97 bool compareThresholdMasked (RGBA a, RGBA b, RGBA threshold, deUint32 cmpMask)
99 return computeAbsDiffMasked(a, b, cmpMask).isBelowThreshold(threshold);
  /external/guava/guava/src/com/google/common/collect/
Ordering.java 682 E threshold = elements.next(); local
683 buffer[0] = threshold;
685 // threshold is the kth smallest element seen so far. Once bufferSize >= k,
686 // anything larger than threshold can be ignored immediately.
691 threshold = max(threshold, e);
696 if (compare(e, threshold) >= 0) {
709 // -- the new value of threshold -- might be found.
725 threshold = buffer[minThresholdPosition];
727 threshold = max(threshold, buffer[i])
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/NarrowPhaseCollision/
btVoronoiSimplexSolver.h 143 void setEqualVertexThreshold(btScalar threshold)
145 m_equalVertexThreshold = 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/opencv3/apps/traincascade/
boost.h 72 float getThreshold() const { return threshold; }
82 float threshold; member in class:CvCascadeBoost
  /external/opencv3/modules/cudaimgproc/src/cuda/
hough_lines.cu 149 __global__ void linesGetResult(const PtrStepSzi accum, float2* out, int* votes, const int maxSize, const float rho, const float theta, const int threshold, const int numrho)
159 if (curVotes > threshold &&
177 int linesGetResult_gpu(PtrStepSzi accum, float2* out, int* votes, int maxSize, float rho, float theta, int threshold, bool doSort)
189 linesGetResult<<<grid, block>>>(accum, out, votes, maxSize, rho, theta, threshold, accum.cols - 2);
  /external/opencv3/modules/imgproc/
opencl_kernels_imgproc.cpp 7323 const struct ProgramEntry threshold={"threshold", member in namespace:cv::ocl::imgproc
    [all...]
  /external/opencv3/modules/imgproc/test/ocl/
test_boxfilter.cpp 95 void Near(double threshold = 0.0)
97 OCL_EXPECT_MATS_NEAR(dst, threshold);
test_pyramids.cpp 83 void Near(double threshold = 0.0)
85 OCL_EXPECT_MATS_NEAR(dst, threshold);
test_sepfilter2D.cpp 103 void Near(double threshold = 0.0)
105 OCL_EXPECT_MATS_NEAR(dst, threshold);
  /external/selinux/sepolgen/tests/
test_matching.py 49 ml.threshold = 100
72 ml.threshold = 100
  /external/valgrind/massif/
ms_print.in 43 # Threshold dictating what percentage an entry must represent for us to
45 my $threshold = 1.0;
75 --threshold=<m.n> significance threshold, in percent [$threshold]
118 # --threshold=X (tolerates a trailing '%')
119 } elsif ($arg =~ /^--threshold=([\d\.]+)%?$/) {
120 $threshold = $1;
181 return $is_top_node || 0 == $threshold ||
182 ( $total_szB != 0 && $xpt_szB * 100 / $total_szB >= $threshold );
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_deblocking.c 212 u8 (*threshold)[16],
220 u8 (*threshold)[8],
    [all...]
  /external/valgrind/massif/tests/
peak2.post.exp 45 ->00.85% (16B) in 1+ places, all below ms_print's threshold (01.00%)
57 ->00.44% (16B) in 1+ places, all below ms_print's threshold (01.00%)
69 ->00.30% (16B) in 1+ places, all below ms_print's threshold (01.00%)
81 ->00.23% (16B) in 1+ places, all below ms_print's threshold (01.00%)
93 ->00.18% (16B) in 1+ places, all below ms_print's threshold (01.00%)
105 ->00.15% (16B) in 1+ places, all below ms_print's threshold (01.00%)
117 ->00.13% (16B) in 1+ places, all below ms_print's threshold (01.00%)
129 ->00.11% (16B) in 1+ places, all below ms_print's threshold (01.00%)
141 ->00.10% (16B) in 1+ places, all below ms_print's threshold (01.00%)
153 ->00.09% (16B) in 1+ places, all below ms_print's threshold (01.00%
    [all...]
ignoring.post.exp 51 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%)
64 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%)
92 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%)
107 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%)
122 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%)
137 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%)
152 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%)
168 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%)
188 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%)
208 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%
    [all...]
zero1.post.exp 4 ms_print arguments: --threshold=0 massif.out
49 ->00.00% (0B) in 5 places, all below massif's threshold (1.00%)
65 ->00.00% (0B) in 10 places, all below massif's threshold (1.00%)
zero2.post.exp 49 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%)
65 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%)
  /external/opencv3/modules/objdetect/src/
haar.cpp 88 float threshold; member in struct:CvHidHaarTreeNode
106 float threshold; member in struct:CvHidHaarStageClassifier
290 hid_stage_classifier->threshold = stage_classifier->threshold - icv_stage_threshold_bias;
320 node->threshold = classifier->threshold[l];
367 ipp_thresholds[j] = classifier->threshold[0];
664 t = _mm256_mul_ps(t, _mm256_set_ps(nodes[7]->threshold,
665 nodes[6]->threshold,
666 nodes[5]->threshold,
1831 float threshold = 0; local
    [all...]
  /external/autotest/client/cros/image_comparison/
image_comparison_factory.py 82 threshold=self.pixel_count_thres,
  /external/guava/guava-tests/benchmark/com/google/common/cache/
SegmentBenchmark.java 49 for (int i = 0; i < segment.threshold; i++) {
  /external/llvm/bindings/go/llvm/
transforms_scalar.go 38 func (pm PassManager) AddScalarReplAggregatesPassWithThreshold(threshold int) {
39 C.LLVMAddScalarReplAggregatesPassWithThreshold(pm.C, C.int(threshold))
  /external/opencv3/modules/core/test/
test_ippasync.cpp 43 void Near(double threshold = 0.0)
45 EXPECT_MAT_NEAR(matrix, result, threshold);
127 void Near(double threshold = 0.0)
129 EXPECT_MAT_NEAR(matrix, result, threshold);
  /external/opencv3/samples/cpp/tutorial_code/ShapeDescriptors/
hull_demo.cpp 42 createTrackbar( " Threshold:", "Source", &thresh, max_thresh, thresh_callback );
59 /// Detect edges using Threshold
60 threshold( src_gray, threshold_output, thresh, 255, THRESH_BINARY );
  /frameworks/av/media/libstagefright/codecs/aacenc/inc/
tns.h 71 Word16 threshold; /* min. prediction gain for using tns TABUL * 100 */ member in struct:__anon28917
  /frameworks/base/libs/hwui/
PathTessellator.h 35 * Structure used for threshold values in outline path tessellation.
112 * @param threshold The threshold of acceptable error (in pixels) when approximating
115 static bool approximatePathOutlineVertices(const SkPath &path, float threshold,

Completed in 700 milliseconds

1 2 3 4 5 6 7 891011>>