HomeSort by relevance Sort by last modified time
    Searched defs:nearest (Results 1 - 25 of 34) 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
  /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...]
  /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 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-artifact/2.2.1/
maven-artifact-2.2.1.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
maven-compat-3.2.1.jar 
aether-util-0.9.0.M2.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/gson/gson/2.3/
gson-2.3.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/sonatype/aether/aether-util/1.7/
aether-util-1.7.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/aether/aether-util/0.9.0.M2/
aether-util-0.9.0.M2.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/aether/aether-util/0.9.0.M3/
aether-util-0.9.0.M3.jar 
  /prebuilts/tools/common/m2/repository/org/sonatype/aether/aether-util/1.7/
aether-util-1.7.jar 

Completed in 1479 milliseconds

1 2