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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libm/x86_64/
ceil.S 33 ENTRY(ceil) function
36 END(ceil)
  /bionic/libm/arm64/
ceil.S 19 ENTRY(ceil) function
22 END(ceil)
  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestCeil.rs 24 return ceil(inV);
28 return ceil(inV);
32 return ceil(inV);
36 return ceil(inV);
40 return ceil(inV);
44 return ceil(inV);
48 return ceil(inV);
52 return ceil(inV);
  /bionic/libm/x86/
ceil.S 33 ENTRY(ceil) function
41 END(ceil)
43 ALIAS_SYMBOL(ceill, ceil);
  /external/jemalloc/test/unit/
run_quantize.c 60 size_t lrun_size, run_size, floor, ceil; local
68 ceil = run_quantize_ceil(run_size);
73 assert_zu_eq(run_size, ceil,
101 * run_quantize_{floor,ceil}() are monotonic.
115 size_t run_size, floor, ceil; local
119 ceil = run_quantize_ceil(run_size);
122 "Floor should be <= (floor=%zu, run_size=%zu, ceil=%zu)",
123 floor, run_size, ceil);
124 assert_zu_ge(ceil, run_size,
125 "Ceiling should be >= (floor=%zu, run_size=%zu, ceil=%zu)"
    [all...]
  /external/libvpx/libvpx/vpx_ports/
msvc.h 25 return ceil(x - 0.5);
  /external/v8/test/mjsunit/asm/
math-ceil.js 8 var ceil = stdlib.Math.ceil;
13 return ceil(a);
  /external/robolectric/v1/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);
  /frameworks/base/core/java/android/util/
FloatMath.java 58 public static float ceil(float value) { method in class:FloatMath
59 return (float) Math.ceil(value);
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
OvalShape.java 42 outline.setOval((int) Math.ceil(rect.left), (int) Math.ceil(rect.top),
RectShape.java 43 outline.setRect((int) Math.ceil(rect.left), (int) Math.ceil(rect.top),
  /cts/tests/tests/libcorelegacy22/src/android/util/cts/
FloatMathTest.java 39 assertEquals(79, FloatMath.ceil(78.89f), 0);
40 assertEquals(-78, FloatMath.ceil(-78.89f), 0);
41 assertEquals(8.0f, FloatMath.ceil(7.2f));
42 assertEquals(-6.0f, FloatMath.ceil(-6.3f));
  /prebuilts/go/darwin-x86/src/math/
floor_arm.s 10 TEXT ·Ceil(SB),NOSPLIT,$0
11 B ·ceil(SB)
  /prebuilts/go/linux-x86/src/math/
floor_arm.s 10 TEXT ·Ceil(SB),NOSPLIT,$0
11 B ·ceil(SB)
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/
math.s 8 .float $ceil(1.5)
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncCeiling.java 45 return new XNumber(Math.ceil(m_arg0.execute(xctxt).num()));
  /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
39 using std::ceil ;
42 return s < static_cast<S>(0) ? ceil(s) : floor(s) ;
70 struct Ceil
79 using std::ceil ;
82 return ceil(s) ;
101 using std::ceil ;
106 S next = ceil(s);
  /frameworks/base/graphics/java/android/graphics/
NinePatch.java 72 result.left = (int) Math.ceil(left * scale);
73 result.top = (int) Math.ceil(top * scale);
74 result.right = (int) Math.ceil(right * scale);
75 result.bottom = (int) Math.ceil(bottom * scale);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
QSDetailClipper.java 52 int r = (int) Math.ceil(Math.sqrt(x * x + y * y));
53 r = (int) Math.max(r, Math.ceil(Math.sqrt(w * w + y * y)));
54 r = (int) Math.max(r, Math.ceil(Math.sqrt(w * w + h * h)));
55 r = (int) Math.max(r, Math.ceil(Math.sqrt(x * x + h * h)));
  /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/ExactCalculator/src/com/android/calculator2/
AlignedTextView.java 61 (int) Math.ceil(mTempRect.top - paint.ascent()));
62 mBottomPaddingOffset = Math.min(getPaddingBottom(), (int) Math.ceil(paint.descent()));
  /prebuilts/misc/common/swig/include/2.0.11/
math.i 60 extern double ceil(double x);

Completed in 2935 milliseconds

1 2 3 4 5 6 7 8 91011>>