HomeSort by relevance Sort by last modified time
    Searched refs:floor (Results 1 - 25 of 734) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libvorbis/lib/books/
Makefile.am 3 SUBDIRS = coupled uncoupled floor
  /external/chromium_org/v8/test/mjsunit/
math-floor-of-div-nosudiv.js 54 assertEquals(Math.floor(div(k, 1)), Math.floor(k / 1));
55 assertEquals(Math.floor(div(k, -1)), Math.floor(k / -1));
56 assertEquals(Math.floor(div(k, 2)), Math.floor(k / 2));
57 assertEquals(Math.floor(div(k, -2)), Math.floor(k / -2));
58 assertEquals(Math.floor(div(k, 3)), Math.floor(k / 3))
    [all...]
math-floor-of-div.js 54 assertEquals(Math.floor(div(k, 1)), Math.floor(k / 1));
55 assertEquals(Math.floor(div(k, -1)), Math.floor(k / -1));
56 assertEquals(Math.floor(div(k, 2)), Math.floor(k / 2));
57 assertEquals(Math.floor(div(k, -2)), Math.floor(k / -2));
58 assertEquals(Math.floor(div(k, 3)), Math.floor(k / 3))
    [all...]
  /external/valgrind/main/none/tests/
floored.c 16 return (int)floor(2.90) + 1;
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_round.c 41 t = floor(x);
46 t = floor(-x);
s_floor.c 17 * floor(x)
22 * Inexact flag raised if x not equal to floor(x).
33 floor(double x) function
77 __weak_reference(floor, floorl);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowFloatMath.java 27 public static float floor(float value) { method in class:ShadowFloatMath
28 return (float) Math.floor(value);
  /external/libvpx/libvpx/vp9/common/
vp9_systemdependent.h 33 return (int)floor(x + 0.5);
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
os_specific_inline.h 36 x_int = (long int)floor(x_dbl + 0.499999999999);
  /frameworks/base/core/java/android/util/
FloatMath.java 35 * @return the floor of value
37 public static native float floor(float value); method in class:FloatMath
  /cts/tests/tests/util/src/android/util/cts/
FloatMathTest.java 27 // floor
28 assertEquals(7.0f, FloatMath.floor(7.2f));
29 assertEquals(-7.0f, FloatMath.floor(-6.3f));
  /external/chromium_org/ui/gfx/
safe_integer_conversions.h 26 return ClampToInt(std::floor(value));
36 rounded = std::floor(value + 0.5f);
  /frameworks/base/core/tests/coretests/src/android/util/
FloatMathTest.java 34 assertEquals(78, FloatMath.floor(78.89f), 0);
35 assertEquals(-79, FloatMath.floor(-78.89f), 0);
  /frameworks/base/tools/layoutlib/bridge/src/android/util/
FloatMath_Delegate.java 42 * @return the floor of value
45 /*package*/ static float floor(float value) { method in class:FloatMath_Delegate
46 return (float)Math.floor(value);
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncFloor.java 28 * Execute the Floor() function.
45 return new XNumber(java.lang.Math.floor(m_arg0.execute(xctxt).num()));
FuncRound.java 49 return new XNumber(java.lang.Math.floor(val
  /system/extras/tests/bionic/libstdc++/
test_cmath.cpp 67 using ::floor;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/
converter_policies.hpp 15 #include <boost/config/no_tr1/cmath.hpp> // for std::floor and std::ceil
38 using std::floor ;
42 return s < static_cast<S>(0) ? ceil(s) : floor(s) ;
51 struct Floor
60 using std::floor ;
63 return floor(s) ;
100 using std::floor ;
105 S prev = floor(s);
119 bool is_prev_even = two * floor(prev / two) == prev ;
  /external/libvorbis/lib/
os.h 41 # define rint(x) (floor((x)+0.5f))
50 # define rint(x) (floor((x)+0.5f))
175 the floor() call is required to ensure correct roudning of
177 return (int)floor(f+.5);
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
RenderCoordinates.java 166 public int getScrollXPixInt() { return (int) Math.floor(getScrollXPix()); }
171 public int getScrollYPixInt() { return (int) Math.floor(getScrollYPix()); }
291 return (int) Math.floor(getMaxHorizontalScrollPix());
298 return (int) Math.floor(getMaxVerticalScrollPix());
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format_rgb9e5.h 121 maxm = (int) floor(maxrgb / denom + 0.5);
130 rm = (int) floor(rc / denom + 0.5);
131 gm = (int) floor(gc / denom + 0.5);
132 bm = (int) floor(bc / denom + 0.5);
  /external/chromium_org/webkit/data/test_shell/sort/
sort-quick.js 9 var pivot = left + Math.floor(Math.random()*(right-left));
10 //var pivot = Math.floor(left + (right-left)/2);
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_rgb9e5.h 121 maxm = (int) floor(maxrgb / denom + 0.5);
130 rm = (int) floor(rc / denom + 0.5);
131 gm = (int) floor(gc / denom + 0.5);
132 bm = (int) floor(bc / denom + 0.5);
  /external/tremolo/Tremolo/
os.h 61 # define rint(x) (floor((x)+0.5f))
  /bionic/libstdc++/include/
cmath 69 using ::floor;

Completed in 2851 milliseconds

1 2 3 4 5 6 7 8 91011>>