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

12 3 4 5 6 7 8 910

  /bionic/libstdc++/include/
cmath 65 using ::ceil;
  /dalvik/libcore/xml/src/main/java/org/apache/xpath/functions/
FuncCeiling.java 45 return new XNumber(Math.ceil(m_arg0.execute(xctxt).num()));
  /external/skia/include/core/
SkSize.h 92 SkISize ceil() const { function in struct:SkSize
SkFloatingPoint.h 53 #define sk_float_ceil(x) (float)::ceil(x)
  /ndk/build/platforms/android-5/arch-x86/usr/include/
cmath 65 using ::ceil;
  /ndk/build/platforms/android-8/arch-x86/usr/include/
cmath 65 using ::ceil;
  /dalvik/libcore/luni/src/main/native/
java_lang_Math.c 78 /* native public static double ceil(double a); */
81 return ceil(a);
182 { "ceil", "(D)D", jceil },
java_lang_StrictMath.c 89 /* native public static double ceil(double a); */
207 { "ceil", "(D)D", jceil },
  /external/e2fsprogs/intl/
vasnprintf.c 336 + 1 /* turn floor into ceil */
346 + 1 /* turn floor into ceil */
354 + 1 /* turn floor into ceil */
365 + 1 /* turn floor into ceil */
374 + 1 /* turn floor into ceil */
381 + 1 /* turn floor into ceil */
392 + 1 /* turn floor into ceil */
401 + 1 /* turn floor into ceil */
408 + 1 /* turn floor into ceil */
420 + 1 /* turn floor into ceil */
    [all...]
  /external/stlport/test/unit/
cmath_test.cpp 78 CPPUNIT_CHECK( are_equals(std::ceil(1.5), 2.0) );
112 CPPUNIT_CHECK( are_equals(std::ceil(1.5f), 2.0f) );
138 CPPUNIT_CHECK( are_equals(std::ceil(1.5l), 2.0l) );
  /bionic/libm/i387/
s_ceil.S 40 ENTRY(ceil) function
  /bionic/libm/man/
fabs.3 72 .Xr ceil 3 ,
floor.3 65 .Xr ceil 3 ,
round.3 59 .Xr ceil 3 ,
trunc.3 63 .Xr ceil 3 ,
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
NumericSprite.java 39 mWidth[i] = (int) Math.ceil(mLabelMaker.getWidth(i));
  /external/quake/quake/src/QW/client/
sys_wina.s 110 orb $0x08,%ah // ceil mode, single precision
  /external/quake/quake/src/WinQuake/
sys_wina.s 111 orb $0x08,%ah // ceil mode, single precision
  /external/skia/src/core/
SkFP.h 61 #define SkFPCeil(x) SkFloat::Ceil();
  /frameworks/base/awt/java/awt/font/
GlyphVector.java 105 int width = (int)Math.ceil(visualRect.getMaxX() + x) - minX;
106 int height = (int)Math.ceil(visualRect.getMaxY() + y) - minY;
131 int width = (int)Math.ceil(visualRect.getMaxX() + x) - minX;
132 int height = (int)Math.ceil(visualRect.getMaxY() + y) - minY;
  /frameworks/base/core/java/android/util/
FloatMath.java 48 public static native float ceil(float value); method in class:FloatMath
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
PowerGaugePreference.java 90 percentView.setText((int) (Math.ceil(mPercent)) + "%");
  /system/extras/tests/bionic/libstdc++/
test_cmath.cpp 65 using ::ceil;
  /external/jpeg/
jutils.c 73 /* Compute a/b rounded up to next integer, ie, ceil(a/b) */
82 /* Compute a rounded up to next multiple of b, ie, ceil(a/b)*b */
  /external/webkit/WebCore/platform/graphics/
SimpleFontData.cpp 144 // Nasty hack to determine if we should round or ceil space widths.
145 // If the font is monospace or fake monospace we ceil to ensure that

Completed in 249 milliseconds

12 3 4 5 6 7 8 910