/external/google-benchmark/src/ |
string_util.cc | 42 // Adjust threshold so that it never excludes things which can't be rendered 98 std::string ToBinaryStringFullySpecified(double value, double threshold, 102 ToExponentAndMantissa(value, threshold, precision, 1024.0, &mantissa,
|
/external/llvm/bindings/ocaml/transforms/scalar_opts/ |
scalar_opts_ocaml.c | 173 CAMLprim value llvm_add_scalar_repl_aggregates_with_threshold(value threshold, 175 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/opencv3/modules/features2d/src/ |
brisk.cpp | 99 CV_PROP_RW int threshold; member in class:cv::BRISK_Impl 162 getAgastPoints(int threshold, std::vector<cv::KeyPoint>& keypoints); 166 getAgastScore(int x, int y, int threshold) const; 168 getAgastScore_5_8(int x, int y, int threshold) const; 170 getAgastScore(float xf, float yf, int threshold, float scale = 1.0f) const; 260 getScoreMaxAbove(const int layer, const int x_layer, const int y_layer, const int threshold, bool& ismax, 263 getScoreMaxBelow(const int layer, const int x_layer, const int y_layer, const int threshold, bool& ismax, 286 threshold = thresh; 318 threshold = 20; 822 briskScaleSpace.getKeypoints(threshold, keypoints) [all...] |
/external/opencv3/modules/imgproc/src/opencl/ |
threshold.cl | 54 __kernel void threshold(__global const uchar * srcptr, int src_step, int src_offset,
|
gftt.cl | 116 __constant float * threshold, int max_corners) 133 if (val > threshold[0])
|
/external/opencv3/modules/rsobjdetect/src/ |
innerloop.cpp | 32 sc->invoke_addStump(i, stump.threshold, stump.left, stump.right); 37 sc->invoke_addStage(stage.first, stage.ntrees, stage.threshold);
|
/external/opencv3/samples/cpp/tutorial_code/ImgTrans/ |
imageSegmentation.cpp | 77 threshold(bw, bw, 40, 255, CV_THRESH_BINARY | CV_THRESH_OTSU); 87 // so we can visualize and threshold it 93 // Threshold to obtain the peaks 95 threshold(dist, dist, .4, 1., CV_THRESH_BINARY);
|
/external/valgrind/massif/tests/ |
ignored.post.exp | 45 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%)
|
long-time.post.exp | 45 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%) 59 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%) 86 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%) 97 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%) 112 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%) 127 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%) 138 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%) 154 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%) 172 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%) 190 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00% [all...] |
/external/valgrind/none/tests/ |
pth_cvsimple.stdout.exp | 13 hit threshold!
|
/frameworks/base/core/java/android/os/ |
CommonTimeConfig.java | 284 * Gets the panic threshold for the estimated error level of the common time service. When the 288 * @return The threshold (in microseconds) past which the common time service will panic. 298 * Sets the panic threshold for the estimated error level of the common time service. When the 302 * @param threshold The threshold (in microseconds) past which the common time service will 307 public int setPanicThreshold(int threshold) { 310 return mUtils.transactSetInt(METHOD_SET_PANIC_THRESHOLD, threshold);
|
/frameworks/base/core/java/com/android/internal/widget/ |
DrawableHolder.java | 128 final float threshold = 1.0f / 256.0f; // contribution less than 1 LSB of RGB byte local 129 if (mAlpha <= threshold) // don't bother if it won't show up
|
/packages/apps/Camera2/src/com/android/camera/one/v2/imagesaver/ |
MostRecentImageSaver.java | 96 private void closeOlderImages(long threshold, Map<Long, ? extends ImageProxy> imageMap) { 99 if (imageTimestamp < threshold) {
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/ |
WavAnalyzer.java | 19 private double threshold; // threshold of passing, drop off compared to 2000 kHz field in class:WavAnalyzer 114 threshold = dB[indexOf2000Hz] + Common.PASSING_THRESHOLD_DB; 119 if (Util.mean(responseInRange) < threshold) { 249 return threshold;
|
/external/opencv3/modules/calib3d/ |
precomp.hpp | 99 int modelPoints, double threshold,
|
/external/opencv3/modules/calib3d/src/ |
precomp.hpp | 99 int modelPoints, double threshold,
|
/external/opencv3/modules/cudaobjdetect/src/cuda/ |
lbp.hpp | 57 float threshold; member in struct:cv::cuda::device::lbp::Stage
|
/external/opencv3/modules/imgproc/ |
opencl_kernels_imgproc.hpp | 74 extern const struct ProgramEntry threshold;
|
/external/opencv3/samples/cpp/ |
bgfg_segm.cpp | 83 threshold(fgmask, fgmask, 10, 255, THRESH_BINARY);
|
/external/opencv3/samples/cpp/tutorial_code/ShapeDescriptors/ |
generalContours_demo1.cpp | 42 createTrackbar( " Threshold:", "Source", &thresh, max_thresh, thresh_callback ); 58 /// Detect edges using Threshold 59 threshold( src_gray, threshold_output, thresh, 255, THRESH_BINARY );
|
generalContours_demo2.cpp | 42 createTrackbar( " Threshold:", "Source", &thresh, max_thresh, thresh_callback ); 58 /// Detect edges using Threshold 59 threshold( src_gray, threshold_output, thresh, 255, THRESH_BINARY );
|
/external/opencv3/samples/python2/ |
squares.py | 26 retval, bin = cv2.threshold(gray, thrs, 255, cv2.THRESH_BINARY)
|
/frameworks/base/core/tests/coretests/src/android/view/ |
VelocityTest.java | 273 private void assertEqualFuzzy(float expected, float actual, float threshold) { 274 boolean fuzzyEqual = actual >= expected - threshold && actual <= expected + threshold; 276 "> while accepting a variation of: <"+threshold+">", fuzzyEqual);
|