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

1 2 3 4 5 6 7 8 91011>>

  /external/libvorbis/lib/books/
Makefile.am 3 SUBDIRS = coupled uncoupled floor
  /external/valgrind/main/none/tests/
floored.c 16 return (int)floor(2.90) + 1;
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Math/
15.8.2.9.js 24 ECMA Section: 15.8.2.9 Math.floor(x)
36 - the value of Math.floor(x) == -Math.ceil(-x)
44 var TITLE = "Math.floor(x)";
55 array[item++] = new TestCase( SECTION, "Math.floor.length", 1, Math.floor.length );
57 array[item++] = new TestCase( SECTION, "Math.floor()", Number.NaN, Math.floor() );
58 array[item++] = new TestCase( SECTION, "Math.floor(void 0)", Number.NaN, Math.floor(void 0) );
59 array[item++] = new TestCase( SECTION, "Math.floor(null)", 0, Math.floor(null) )
    [all...]
15.8.2.6.js 83 array[item++] = new TestCase( SECTION, "Math.ceil(Infinity)", -Math.floor(-Infinity), Math.ceil(Number.POSITIVE_INFINITY) );
84 array[item++] = new TestCase( SECTION, "Math.ceil(-Infinity)", -Math.floor(Infinity), Math.ceil(Number.NEGATIVE_INFINITY) );
85 array[item++] = new TestCase( SECTION, "Math.ceil(-Number.MIN_VALUE)", -Math.floor(Number.MIN_VALUE), Math.ceil(-Number.MIN_VALUE) );
86 array[item++] = new TestCase( SECTION, "Math.ceil(1)", -Math.floor(-1), Math.ceil(1) );
87 array[item++] = new TestCase( SECTION, "Math.ceil(-1)", -Math.floor(1), Math.ceil(-1) );
88 array[item++] = new TestCase( SECTION, "Math.ceil(-0.9)", -Math.floor(0.9), Math.ceil(-0.9) );
89 array[item++] = new TestCase( SECTION, "Math.ceil(0.9 )", -Math.floor(-0.9), Math.ceil( 0.9) );
90 array[item++] = new TestCase( SECTION, "Math.ceil(-1.1)", -Math.floor(1.1), Math.ceil( -1.1));
91 array[item++] = new TestCase( SECTION, "Math.ceil( 1.1)", -Math.floor(-1.1), Math.ceil( 1.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/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));
  /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;
  /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/tremolo/Tremolo/
os.h 61 # define rint(x) (floor((x)+0.5f))
  /bionic/libstdc++/include/
cmath 69 using ::floor;
  /ndk/sources/cxx-stl/gabi++/include/
cmath 69 using ::floor;
  /ndk/sources/cxx-stl/system/include/
cmath 69 using ::floor;
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
cmath 67 using ::floor;
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
cmath 67 using ::floor;
  /prebuilts/ndk/5/sources/cxx-stl/system/include/
cmath 69 using ::floor;
  /prebuilts/ndk/6/sources/cxx-stl/system/include/
cmath 69 using ::floor;
  /prebuilts/ndk/7/sources/cxx-stl/gabi++/include/
cmath 69 using ::floor;

Completed in 430 milliseconds

1 2 3 4 5 6 7 8 91011>>