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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Math/
15.8.2.6.js 24 ECMA Section: 15.8.2.6 Math.ceil(x)
36 - the value of Math.ceil(x) == -Math.ceil(-x)
43 var TITLE = "Math.ceil(x)";
54 array[item++] = new TestCase( SECTION, "Math.ceil.length", 1, Math.ceil.length );
56 array[item++] = new TestCase( SECTION, "Math.ceil(NaN)", Number.NaN, Math.ceil(Number.NaN) );
57 array[item++] = new TestCase( SECTION, "Math.ceil(null)", 0, Math.ceil(null) )
    [all...]
15.8.2.9.js 36 - the value of Math.floor(x) == -Math.ceil(-x)
69 array[item++] = new TestCase( SECTION, "Math.floor(NaN)==-Math.ceil(-NaN)", false, Math.floor(Number.NaN) == -Math.ceil(-Number.NaN) );
72 array[item++] = new TestCase( SECTION, "Math.floor(0)==-Math.ceil(-0)", true, Math.floor(0) == -Math.ceil(-0) );
76 array[item++] = new TestCase( SECTION, "Math.floor(-0)==-Math.ceil(0)", true, Math.floor(-0)== -Math.ceil(0) );
79 array[item++] = new TestCase( SECTION, "Math.floor(Infinity)==-Math.ceil(-Infinity)", true, Math.floor(Number.POSITIVE_INFINITY) == -Math.ceil(Number.NEGATIVE_INFINITY) );
82 array[item++] = new TestCase( SECTION, "Math.floor(-Infinity)==-Math.ceil(Infinity)", true, Math.floor(Number.NEGATIVE_INFINITY) == -Math.ceil(Number.POSITIVE_INFINITY) (…)
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowFloatMath.java 32 public static float ceil(float value) { method in class:ShadowFloatMath
33 return (float) Math.ceil(value);
  /external/openfst/src/extensions/far/
strings.cc 37 return nline ? ceil(log10(nline + 1)) : 1;
  /frameworks/base/core/java/android/util/
FloatMath.java 46 public static native float ceil(float value); method in class:FloatMath
  /cts/tests/tests/util/src/android/util/cts/
FloatMathTest.java 23 // ceil
24 assertEquals(8.0f, FloatMath.ceil(7.2f));
25 assertEquals(-6.0f, FloatMath.ceil(-6.3f));
  /frameworks/base/core/tests/coretests/src/android/util/
FloatMathTest.java 40 assertEquals(79, FloatMath.ceil(78.89f), 0);
41 assertEquals(-78, FloatMath.ceil(-78.89f), 0);
  /frameworks/base/tools/layoutlib/bridge/src/android/util/
FloatMath_Delegate.java 57 /*package*/ static float ceil(float value) { method in class:FloatMath_Delegate
58 return (float)Math.ceil(value);
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncCeiling.java 45 return new XNumber(Math.ceil(m_arg0.execute(xctxt).num()));
  /system/extras/tests/bionic/libstdc++/
test_cmath.cpp 65 using ::ceil;
  /external/iproute2/tc/
q_htb.c 39 " [ceil R2] [cburst B2] [mtu MTU] [quantum Q]\n"
45 " ceil definite upper class rate (no borrows) {rate}\n"
46 " cburst burst but for ceil {computed}\n"
166 } else if (strcmp(*argv, "ceil") == 0) {
168 if (opt.ceil.rate) {
169 fprintf(stderr, "Double \"ceil\" spec\n");
172 if (get_rate(&opt.ceil.rate, *argv)) {
173 explain1("ceil");
206 /* if ceil params are missing, use the same as rate */
207 if (!opt.ceil.rate) opt.ceil = opt.rate
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_ceil.c 17 * ceil(x)
22 * Inexact flag raised if x not equal to ceil(x).
33 ceil(double x) function
76 __weak_reference(ceil, ceill);
  /bionic/libstdc++/include/
cmath 67 using ::ceil;
  /ndk/sources/cxx-stl/gabi++/include/
cmath 67 using ::ceil;
  /ndk/sources/cxx-stl/system/include/
cmath 67 using ::ceil;
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
PowerGaugePreference.java 46 mProgress = (int) Math.ceil(percentOfMax);
48 R.string.percentage, (int) Math.ceil(percentOfTotal));
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
cmath 65 using ::ceil;
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
cmath 65 using ::ceil;
  /prebuilts/ndk/5/sources/cxx-stl/system/include/
cmath 67 using ::ceil;
  /prebuilts/ndk/6/sources/cxx-stl/system/include/
cmath 67 using ::ceil;
  /prebuilts/ndk/7/sources/cxx-stl/gabi++/include/
cmath 67 using ::ceil;
  /prebuilts/ndk/7/sources/cxx-stl/system/include/
cmath 67 using ::ceil;
  /prebuilts/ndk/8/sources/cxx-stl/gabi++/include/
cmath 67 using ::ceil;
  /prebuilts/ndk/8/sources/cxx-stl/system/include/
cmath 67 using ::ceil;
  /external/llvm/utils/lit/lit/
Util.py 102 power = int(math.ceil(math.log(maxValue, 10)))
105 N = int(math.ceil(maxValue / barH))
124 pDigits = int(math.ceil(math.log(maxValue, 10)))
128 cDigits = int(math.ceil(math.log(len(items), 10)))

Completed in 839 milliseconds

1 2 3 4 5 6 7 8 91011>>