HomeSort by relevance Sort by last modified time
    Searched refs:floor (Results 276 - 300 of 758) sorted by null

<<11121314151617181920>>

  /external/jmonkeyengine/engine/src/test/jme3test/games/
CubeField.java 220 Box floor = new Box(Vector3f.ZERO.add(playerMesh.getLocalTranslation().getX(), local
222 Geometry floorMesh = new Geometry("Box", floor);
227 floorMesh.setName("floor");
326 * Determines the colors of the player, floor, obstacle and background
  /external/libvorbis/lib/
sharedbook.c 55 exp= floor(log(val)/log(2.f)+.001); //+epsilon
164 long vals=floor(pow((float)b->entries,1.f/b->dim));
  /external/llvm/lib/Analysis/
ProfileEstimatorPass.cpp 218 double fraction = floor(incoming/Edges.size());
289 double fraction = Edges.size() ? floor(BBWeight/Edges.size()) : 0.0;
  /external/mesa3d/src/gallium/auxiliary/util/
u_math.h 85 return (float) floor( (double) f );
128 return x >= 0.0 ? floor(x + 0.5) : ceil(x - 0.5);
282 * Floor(x), returned as int.
  /external/mesa3d/src/mesa/main/
imports.h 127 #define floorf(f) ((float) floor(f))
253 *** FLOORF: floor of float
271 #define FLOORF(x) ((GLfloat) floor(x))
344 *** IFLOOR: return (as an integer) floor of float
348 * IEEE floor for computers that round to nearest or even.
350 * This floor operation is done by "(iround(f + .5) + iround(f - .5)) >> 1",
503 * Returns the floor form of binary logarithm for a 32-bit integer.
  /external/qemu/fpu/
softfloat-native.c 365 return x < 0 ? -floor(-x) : floor(x);
  /external/skia/tools/lua/
glyph-usage.lua 52 return math.floor(x * mul + 0.5) / mul
  /external/speex/libspeex/
fftwrap.c 332 _in[i] = (int)floor(.5+in[i]);
368 _in[i] = (int)floor(.5+in[i]);
  /external/v8/src/
macros.py 116 macro FLOOR(arg) = $floor(arg);
  /frameworks/base/media/java/android/media/
ThumbnailUtils.java 282 (int) Math.min(Math.floor(w / minSideLength),
283 Math.floor(h / minSideLength));
  /packages/apps/Gallery/src/com/android/camera/
Util.java 128 (int) Math.min(Math.floor(w / minSideLength),
129 Math.floor(h / minSideLength));
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoSource.java 220 (float) Math.floor(image.getWidth() / 2f),
221 (float) Math.floor(image.getHeight() / 2f));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
mathcalls.h 185 __MATHCALLX (floor,, (_Mdouble_ __x), (__const__));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
tgmath.h 342 #define floor(Val) __TGMATH_UNARY_REAL_ONLY (Val, floor) macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include-fixed/
tgmath.h 351 #define floor(Val) __TGMATH_UNARY_REAL_ONLY (Val, floor) macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
mathcalls.h 185 __MATHCALLX (floor,, (_Mdouble_ __x), (__const__));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
tgmath.h 342 #define floor(Val) __TGMATH_UNARY_REAL_ONLY (Val, floor) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include-fixed/
tgmath.h 351 #define floor(Val) __TGMATH_UNARY_REAL_ONLY (Val, floor) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
mathcalls.h 185 __MATHCALLX (floor,, (_Mdouble_ __x), (__const__));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
tgmath.h 342 #define floor(Val) __TGMATH_UNARY_REAL_ONLY (Val, floor) macro
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
fractions.py 235 # two integers) the lower bound---i.e., the floor of self, is
419 # Will be math.floor(a / b) in 3.0.
422 # trunc(math.floor(div)) doesn't work if the rational is
427 return math.floor(div)
431 # Will be math.floor(a / b) in 3.0.
434 # trunc(math.floor(div)) doesn't work if the rational is
439 return math.floor(div)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
fractions.py 235 # two integers) the lower bound---i.e., the floor of self, is
419 # Will be math.floor(a / b) in 3.0.
422 # trunc(math.floor(div)) doesn't work if the rational is
427 return math.floor(div)
431 # Will be math.floor(a / b) in 3.0.
434 # trunc(math.floor(div)) doesn't work if the rational is
439 return math.floor(div)
  /development/ndk/platforms/android-3/include/
math.h 227 double floor(double);
  /development/ndk/platforms/android-9/include/
math.h 227 double floor(double);
  /development/samples/training/bitmapfun/BitmapFun/src/main/java/com/example/android/bitmapfun/ui/
ImageGridFragment.java 127 final int numColumns = (int) Math.floor(

Completed in 1835 milliseconds

<<11121314151617181920>>