HomeSort by relevance Sort by last modified time
    Searched defs:nearest (Results 1 - 25 of 43) sorted by null

1 2

  /external/opencv3/3rdparty/openexr/Imath/
ImathVecAlgo.h 122 Vec nearest = v0; local
129 nearest = v1;
137 nearest = v2;
140 return nearest;
ImathLineAlgo.h 234 Vec3<T> nearest = v0; local
242 nearest = v1;
249 nearest = v2;
252 return nearest;
  /packages/apps/Camera2/src/com/android/camera/ui/focus/
LensRangeCalculator.java 48 // represents the nearest focus the device can achieve.
55 Float nearest = characteristics.get(CameraCharacteristics.LENS_INFO_MINIMUM_FOCUS_DISTANCE); local
58 if (nearest == null && hyperfocal == null) {
62 nearest = (nearest == null) ? 0.0f : nearest;
65 if (nearest > hyperfocal) {
66 return new LinearScale(hyperfocal, nearest, 0, 1);
69 return new LinearScale(nearest, hyperfocal, 0, 1);
  /external/libpng/contrib/intel/
filter_sse2_intrinsics.c 181 // The Paeth function predicts d to be whichever of a, b, or c is nearest to
216 __m128i nearest = if_then_else(_mm_cmpeq_epi16(smallest, pa), a, local
221 d = _mm_add_epi8(d, nearest);
237 // The Paeth function predicts d to be whichever of a, b, or c is nearest to
272 __m128i nearest = if_then_else(_mm_cmpeq_epi16(smallest, pa), a, local
277 d = _mm_add_epi8(d, nearest);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/polynomials/
PolynomialFunctionLagrangeForm.java 166 int nearest = 0; local
178 nearest = i;
184 double value = y[nearest];
201 if (nearest < 0.5*(n-i+1)) {
202 value += c[nearest]; // fork down
204 nearest--;
205 value += d[nearest]; // fork up
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/clustering/
KMeansPlusPlusClusterer.java 174 // the nearest center that has already been chosen.
178 final Cluster<T> nearest = getNearestCluster(resultSet, p); local
179 final double d = p.distanceFrom(nearest.getCenter());
312 * Returns the nearest {@link Cluster} to the given point
316 * @param point the point to find the nearest {@link Cluster} for
317 * @return the nearest {@link Cluster} to the given point
  /external/libgdx/gdx/src/com/badlogic/gdx/math/
BSpline.java 234 public int nearest (final T in) { method in class:BSpline
235 return nearest(in, 0, spanCount);
239 public int nearest (final T in, int start, final int count) { method in class:BSpline
257 return approximate(v, nearest(v));
261 return approximate(in, nearest(in, start, count));
266 final T nearest = knots.get(n); local
273 P1 = nearest;
278 P2 = nearest;
CatmullRomSpline.java 149 public int nearest (final T in) { method in class:CatmullRomSpline
150 return nearest(in, 0, spanCount);
154 public int nearest (final T in, int start, final int count) { method in class:CatmullRomSpline
172 return approximate(v, nearest(v));
176 return approximate(in, nearest(in, start, count));
181 final T nearest = controlPoints[n]; local
188 P1 = nearest;
193 P2 = nearest;
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/NarrowPhaseCollision/
btVoronoiSimplexSolver.cpp 119 btVector3 nearest; local
146 nearest = from + t*v;
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/linearmath/com/badlogic/gdx/physics/bullet/linearmath/
btQuaternion.java 136 public Quaternion nearest(Quaternion qd) { method in class:btQuaternion
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionDispatch/
btInternalEdgeUtility.cpp 492 btVector3 nearest; local
493 btNearestPointInLineSegment(cp.m_localPointB,v0,v1,nearest);
498 btDebugDrawLine(tr*nearest,tr*cp.m_localPointB,red);
518 btVector3 nearest; local
519 btNearestPointInLineSegment( cp.m_localPointB, v0, v1, nearest );
520 btScalar len=(contact-nearest).length();
531 btVector3 nearest; local
532 btNearestPointInLineSegment( cp.m_localPointB, v1, v2, nearest );
533 btScalar len=(contact-nearest).length();
544 btVector3 nearest; local
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btQuaternion.h 519 SIMD_FORCE_INLINE btQuaternion nearest( const btQuaternion& qd) const function in class:btQuaternion
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/BroadphaseCollision/
btDbvt.h 366 static DBVT_INLINE int nearest(const int* i,const btDbvt::sStkNPS* a,btScalar v,int l,int h) function in struct:btDbvt
1194 j=nearest(&stack[0],&stock[0],nes[q].value,0,stack.size());
1209 j=nearest(&stack[0],&stock[0],nes[1-q].value,j,stack.size());
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info_state_utils.cpp 313 // the given point and the nearest key position.
355 const int x, const int y, const int time, const bool lastPoint, const float nearest,
379 } else if (nearest < ProximityInfoParams::NEAR_KEY_THRESHOLD_FOR_POINT_SCORE) {
416 const float nearest = updateNearKeysDistances(proximityInfo, maxPointToKeyLength, x, y, local
418 const float score = getPointScore(mostCommonKeyWidth, x, y, time, isLastPoint, nearest,
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
btDbvt.java 646 public static int nearest(java.nio.IntBuffer i, btDbvt.sStkNPS a, float v, int l, int h) { method in class:btDbvt
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
Tix.py 1047 def nearest(self, y): member in class:HList
1507 def nearest(self, x, y): member in class:TList
1888 def nearest(self, x, y): member in class:Grid
    [all...]
Tkinter.py 2581 def nearest(self, y): member in class:Listbox
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
Tix.py 1047 def nearest(self, y): member in class:HList
1507 def nearest(self, x, y): member in class:TList
1888 def nearest(self, x, y): member in class:Grid
    [all...]
Tkinter.py 2581 def nearest(self, y): member in class:Listbox
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Tix.py 1047 def nearest(self, y): member in class:HList
1507 def nearest(self, x, y): member in class:TList
1888 def nearest(self, x, y): member in class:Grid
    [all...]
Tkinter.py 2581 def nearest(self, y): member in class:Listbox
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Tix.py 1047 def nearest(self, y): member in class:HList
1507 def nearest(self, x, y): member in class:TList
1888 def nearest(self, x, y): member in class:Grid
    [all...]
Tkinter.py 2581 def nearest(self, y): member in class:Listbox
    [all...]
  /packages/apps/Camera2/src/com/android/camera/widget/
FilmstripView.java 799 int nearest = 0; local
801 while (nearest < BUFFER_SIZE
802 && (mViewItems[nearest] == null || mViewItems[nearest].getLeftPosition() == -1)) {
803 nearest++;
806 if (nearest == BUFFER_SIZE) {
810 int min = Math.abs(viewX - mViewItems[nearest].getCenterX());
812 for (int i = nearest + 1; i < BUFFER_SIZE && mViewItems[i] != null; i++) {
822 nearest = i;
825 return nearest;
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-artifact/2.0.9/
maven-artifact-2.0.9.jar 

Completed in 1867 milliseconds

1 2