/external/lzma/CS/7zip/Compress/LZ/ |
LzInWindow.cs | 108 public UInt32 GetMatchLen(Int32 index, UInt32 distance, UInt32 limit)
113 distance++;
118 for (i = 0; i < limit && _bufferBase[pby + i] == _bufferBase[pby + i - distance]; i++);
|
/external/lzma/Java/SevenZip/Compression/LZ/ |
InWindow.java | 108 public int GetMatchLen(int index, int distance, int limit)
113 distance++;
118 for (i = 0; i < limit && _bufferBase[pby + i] == _bufferBase[pby + i - distance]; i++);
|
/external/opencv3/doc/py_tutorials/py_calib3d/py_depthmap/ |
py_depthmap.markdown | 25 \f$x\f$ and \f$x'\f$ are the distance between points in image plane corresponding to the scene point 3D and 26 their camera center. \f$B\f$ is the distance between two cameras (which we know) and \f$f\f$ is the focal 28 scene is inversely proportional to the difference in distance of corresponding image points and
|
/external/opencv3/doc/tutorials/features2d/feature_flann_matcher/ |
feature_flann_matcher.markdown | 78 { double dist = matches[i].distance; 86 //-- Draw only "good" matches (i.e. whose distance is less than 2*min_dist, 93 { if( matches[i].distance <= max(2*min_dist, 0.02) )
|
/external/opencv3/modules/features2d/misc/java/test/ |
ORBDescriptorExtractorTest.java | 21 double distance = Core.norm(expected, actual, Core.NORM_HAMMING); local 22 assertTrue("expected:<" + allowedDistance + "> but was:<" + distance + ">", distance <= allowedDistance);
|
/external/opencv3/modules/imgproc/include/opencv2/imgproc/ |
types_c.h | 523 float depth; /**< distance between the farthest point and the convex hull */ 539 /** Mask size for distance transform */ 554 /** Distance types for Distance Transform and M-estimators */ 557 CV_DIST_USER =-1, /**< User defined distance */ 558 CV_DIST_L1 =1, /**< distance = |x1-x2| + |y1-y2| */ 559 CV_DIST_L2 =2, /**< the simple euclidean distance */ 560 CV_DIST_C =3, /**< distance = max(|x1-x2|,|y1-y2|) */ 561 CV_DIST_L12 =4, /**< L1-L2 metric: distance = 2(sqrt(1+x*x/2) - 1)) */ 562 CV_DIST_FAIR =5, /**< distance = c^2(|x|/c-log(1+|x|/c)), c = 1.3998 * [all...] |
/external/opencv3/samples/cpp/tutorial_code/xfeatures2D/ |
LATCH_match.cpp | 19 const float inlier_threshold = 2.5f; // Distance threshold to identify inliers 55 float dist1 = nn_matches[i][0].distance; 56 float dist2 = nn_matches[i][1].distance;
|
/external/pdfium/xfa/src/fxbarcode/datamatrix/ |
BC_DataMatrixDetector.cpp | 211 FX_FLOAT corr = Distance(bottomLeft, bottomRight) / (FX_FLOAT)dimensionTop;
212 int32_t norm = Distance(topLeft, topRight);
217 corr = Distance(bottomLeft, topLeft) / (FX_FLOAT)dimensionRight;
218 norm = Distance(bottomRight, topRight);
258 FX_FLOAT corr = Distance(bottomLeft, bottomRight) / (FX_FLOAT)dimension;
259 int32_t norm = Distance(topLeft, topRight);
264 corr = Distance(bottomLeft, bottomRight) / (FX_FLOAT)dimension;
265 norm = Distance(bottomRight, topRight);
299 int32_t CBC_DataMatrixDetector::Distance(CBC_ResultPoint* a,
375 FX_FLOAT abDistance = (FX_FLOAT)Distance((CBC_ResultPoint*)(*patterns)[0], [all...] |
/external/webrtc/webrtc/modules/audio_processing/beamformer/ |
covariance_matrix_generator.cc | 54 BesselJ0(wave_number * Distance(geometry[i], geometry[j])); 105 float distance = std::cos(angle) * geometry[c_ix].x() + local 107 float phase_shift = -2.f * M_PI * distance * freq_in_hertz / sound_speed;
|
/frameworks/base/services/core/java/com/android/server/location/ |
GeofenceState.java | 44 double mDistanceToCenter; // current distance to center of fence 88 * Gets the distance from the current location to the fence's boundary. 89 * @return The distance or {@link Double#MAX_VALUE} if unknown.
|
/frameworks/opt/setupwizard/library/test/src/com/android/setupwizardlib/test/ |
ListViewRequireScrollHelperTest.java | 131 public void smoothScrollBy(int distance, int duration) { 132 super.smoothScrollBy(distance, duration); 133 scrollDistance += distance;
|
/hardware/bsp/intel/peripheral/libupm/src/maxsonarez/ |
maxsonarez.h | 53 * distance of an object from the sensor in inches. They have a 87 * Gets the distance to the object in inches 89 * @return Distance to the object in inches
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
vp9_mcomp.h | 30 // Allowed motion vector pixel distance outside image border 111 int distance, 118 int distance,
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.cons/ |
initializer_list_compare_alloc.pass.cpp | 41 assert(distance(m.begin(), m.end()) == 3); 65 assert(distance(m.begin(), m.end()) == 3); 91 assert(distance(m.begin(), m.end()) == 3);
|
iter_iter_comp_alloc.pass.cpp | 47 assert(distance(m.begin(), m.end()) == 3); 73 assert(distance(m.begin(), m.end()) == 3); 100 assert(distance(m.begin(), m.end()) == 3);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/multiset.cons/ |
initializer_list.pass.cpp | 29 assert(distance(m.begin(), m.end()) == 6); 45 assert(distance(m.begin(), m.end()) == 6); 61 assert(distance(m.begin(), m.end()) == 6);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/unord.map.cnstr/ |
default.pass.cpp | 44 assert(std::distance(c.begin(), c.end()) == 0); 64 assert(std::distance(c.begin(), c.end()) == 0); 73 assert(std::distance(c.begin(), c.end()) == 0);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/unord.multimap.cnstr/ |
default.pass.cpp | 44 assert(std::distance(c.begin(), c.end()) == 0); 64 assert(std::distance(c.begin(), c.end()) == 0); 73 assert(std::distance(c.begin(), c.end()) == 0);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/unord.multiset.cnstr/ |
default.pass.cpp | 42 assert(std::distance(c.begin(), c.end()) == 0); 60 assert(std::distance(c.begin(), c.end()) == 0); 69 assert(std::distance(c.begin(), c.end()) == 0);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/unord.set.cnstr/ |
default.pass.cpp | 42 assert(std::distance(c.begin(), c.end()) == 0); 60 assert(std::distance(c.begin(), c.end()) == 0); 69 assert(std::distance(c.begin(), c.end()) == 0);
|
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/ |
LevenshteinDistanceTest.java | 43 LevenshteinDistance distance = new LevenshteinDistance(sourceTokens, targetTokens); local 45 assertEquals(expectedDistance, distance.calculate()); 46 EditOperation[] ops = distance.getTargetOperations();
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
BogusMoveEventDetector.java | 63 // Accumulated distance from actual and artificial down keys. 84 public void onMoveKey(final int distance) { 85 mAccumulatedDistanceFromDownKey += distance;
|
/platform_testing/libraries/base-app-helpers/src/android/platform/test/helpers/ |
AbstractGoogleFitHelper.java | 66 * @param distance value of Distance in mile 69 int calories, int steps, int distance);
|
/external/libcxx/test/std/containers/unord/unord.map/unord.map.cnstr/ |
assign_copy.pass.cpp | 70 assert(std::distance(c.begin(), c.end()) == c.size()); 71 assert(std::distance(c.cbegin(), c.cend()) == c.size()); 133 assert(std::distance(c.begin(), c.end()) == c.size()); 134 assert(std::distance(c.cbegin(), c.cend()) == c.size()); 179 assert(std::distance(c.begin(), c.end()) == c.size()); 180 assert(std::distance(c.cbegin(), c.cend()) == c.size());
|
/external/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.cnstr/ |
copy.pass.cpp | 78 assert(std::distance(c.begin(), c.end()) == c.size()); 79 assert(std::distance(c.cbegin(), c.cend()) == c.size()); 132 assert(std::distance(c.begin(), c.end()) == c.size()); 133 assert(std::distance(c.cbegin(), c.cend()) == c.size()); 187 assert(std::distance(c.begin(), c.end()) == c.size()); 188 assert(std::distance(c.cbegin(), c.cend()) == c.size());
|