HomeSort by relevance Sort by last modified time
    Searched full:nearest (Results 26 - 50 of 983) sorted by null

12 3 4 5 6 7 8 91011>>

  /development/ndk/platforms/android-21/arch-x86_64/include/machine/
fpu.h 38 * The i387 defaults to Intel extended precision mode and round to nearest,
  /external/compiler-rt/lib/builtins/
muldf3.c 11 // with the IEEE-754 default rounding (to nearest, ties to even).
mulsf3.c 11 // with the IEEE-754 default rounding (to nearest, ties to even).
  /external/libvpx/libvpx/vp8/common/
findnearmv.c 28 int_mv *nearest,
108 /* See if above-left MV can be merged with NEAREST */
117 /* Swap near and nearest if necessary */
135 nearest->as_int = near_mvs[CNT_NEAREST].as_int;
  /external/llvm/test/CodeGen/Hexagon/
doubleconvert-ieee-rnd-near.ll 3 ; to 32-bit int value in IEEE rounding to the nearest mode in V5.
  /external/skia/src/core/
SkFDot6.h 21 * (i.e. round to nearest even)
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
findnearmv.c 28 int_mv *nearest,
108 /* See if above-left MV can be merged with NEAREST */
117 /* Swap near and nearest if necessary */
135 nearest->as_int = near_mvs[CNT_NEAREST].as_int;
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/machine/
fpu.h 38 * The i387 defaults to Intel extended precision mode and round to 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/deqp/framework/delibs/debase/
deMath.h 192 * either the nearest lower or the nearest higher representable value, chosen in an implementation-defined manner.
194 * \note Choosing either nearest lower or nearest higher means that implementation could for example consistently
195 * choose the lower value, i.e. this function does not round towards nearest.
202 * return the nearest lower (round towards negative inf). */
206 * return the nearest higher (round towards positive inf). */
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_mvref_common.c 212 // The nearest 2 blocks are treated differently
307 int_mv *mvlist, int_mv *nearest, int_mv *near) {
314 *nearest = mvlist[0];
321 int_mv *nearest, int_mv *near) {
335 nearest->as_int = mv_list[0].as_int;
340 nearest->as_int = bmi[0].as_mv[ref].as_int;
342 if (nearest->as_int != mv_list[n].as_int) {
354 nearest->as_int = bmi[2].as_mv[ref].as_int;
356 if (nearest->as_int != candidates[n].as_int) {
  /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
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
mathcalls.h 175 /* Nearest integer, absolute value, and remainder functions. */
278 /* Return the integer nearest X in the direction of the
308 /* Round X to nearest integral value, rounding halfway cases away from
312 /* Round X to the integral value in floating-point format nearest but
324 /* Round X to nearest integral value according to current rounding
329 /* Round X to nearest integral value, rounding halfway cases away from
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
mathcalls.h 176 /* Nearest integer, absolute value, and remainder functions. */
279 /* Return the integer nearest X in the direction of the
309 /* Round X to nearest integral value, rounding halfway cases away from
313 /* Round X to the integral value in floating-point format nearest but
325 /* Round X to nearest integral value according to current rounding
330 /* Round X to nearest integral value, rounding halfway cases away from
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
mathcalls.h 176 /* Nearest integer, absolute value, and remainder functions. */
279 /* Return the integer nearest X in the direction of the
309 /* Round X to nearest integral value, rounding halfway cases away from
313 /* Round X to the integral value in floating-point format nearest but
325 /* Round X to nearest integral value according to current rounding
330 /* Round X to nearest integral value, rounding halfway cases away from
  /external/deqp/modules/gles2/functional/
es2fTextureFormatTests.cpp 24 * + nearest-neighbor filtering
154 renderParams.sampler = Sampler(Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::NEAREST, Sampler::NEAREST);
177 // Setup nearest neighbor filtering and clamp-to-edge.
325 renderParams.sampler = Sampler(Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::NEAREST, Sampler::NEAREST);
346 // Setup nearest neighbor filtering and clamp-to-edge.
465 // Setup nearest neighbor filtering and clamp-to-edge.
480 refParams.sampler = Sampler(Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::NEAREST, Sampler::NEAREST);
    [all...]
  /libcore/luni/src/main/java/java/util/
TreeMap.java 275 Node<K, V> nearest = root; local
278 ? comparableKey.compareTo(nearest.key)
279 : comparator.compare(key, nearest.key);
287 return nearest.prev();
292 return nearest;
294 return nearest.next();
298 Node<K, V> child = (comparison < 0) ? nearest.left : nearest.right;
300 nearest = child;
305 * We found a nearest node. Every key not in the tree has up to tw
    [all...]
  /external/deqp/doc/testspecs/GLES2/
performance.texture.format.txt 28 + Nearest neighbor -filtering and clamp to edge -wrap mode
37 filtering (nearest neighbor mode). Shader body is populated with one or
  /external/deqp/modules/gles2/performance/
es2pTextureFilteringTests.cpp 67 { "nearest", GL_NEAREST, true },
68 { "nearest", GL_NEAREST, false },
  /external/deqp/modules/gles3/performance/
es3pTextureFilteringTests.cpp 68 { "nearest", GL_NEAREST, true },
69 { "nearest", GL_NEAREST, false },
  /external/llvm/utils/testgen/
mc-bundling-x86-gen.py 74 # Pad to end at nearest bundle boundary
79 # at the nearest bundle boundary
  /external/mesa3d/src/gallium/auxiliary/util/
u_dump_defines.c 316 "nearest",
332 "nearest",
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
fpu_control.h 48 * 00 - rounding to nearest
84 and no interrupts for exceptions, rounding to nearest. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/
fpu_control.h 45 * 00 - rounding to nearest
81 and no interrupts for exceptions, rounding to nearest. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/
fpu_control.h 48 * 00 - rounding to nearest
84 and no interrupts for exceptions, rounding to nearest. */

Completed in 410 milliseconds

12 3 4 5 6 7 8 91011>>