/external/libvpx/libvpx/vpx_ports/ |
msvc.h | 25 return ceil(x - 0.5);
|
/external/llvm/test/Transforms/LICM/ |
hoist-round.ll | 6 ; This test verifies that ceil, floor, nearbyint, trunc, rint, round, 11 ; CHECK: call float @llvm.ceil.f32 33 %tmp.1 = call float @llvm.ceil.f32(float %arg1) 53 declare float @llvm.ceil.f32(float)
|
/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)));
|
/external/autotest/client/common_lib/cros/ |
perf_stat_lib.py | 5 from math import ceil, floor, sqrt 22 c, f = int(ceil(i)), int(floor(i))
|
/external/eigen/unsupported/test/ |
cxx11_tensor_roundings.cpp | 48 Tensor<float, 2> result = ftensor.ceil(); 52 VERIFY_IS_EQUAL(result(i,j), numext::ceil(ftensor(i,j)));
|
/external/llvm/test/CodeGen/PowerPC/ |
vec_rounding.ll | 31 declare <2 x double> @llvm.ceil.v2f64(<2 x double> %p) 34 %t = call <2 x double> @llvm.ceil.v2f64(<2 x double> %p) 41 declare <4 x double> @llvm.ceil.v4f64(<4 x double> %p) 44 %t = call <4 x double> @llvm.ceil.v4f64(<4 x double> %p) 117 declare <4 x float> @llvm.ceil.v4f32(<4 x float> %p) 120 %t = call <4 x float> @llvm.ceil.v4f32(<4 x float> %p) 126 declare <8 x float> @llvm.ceil.v8f32(<8 x float> %p) 129 %t = call <8 x float> @llvm.ceil.v8f32(<8 x float> %p)
|
/frameworks/base/graphics/java/android/graphics/drawable/shapes/ |
RectShape.java | 44 outline.setRect((int) Math.ceil(rect.left), (int) Math.ceil(rect.top),
|
/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/go/darwin-x86/src/math/ |
stubs_mips64x.s | 42 TEXT ·Ceil(SB),NOSPLIT,$0 43 JMP ·ceil(SB)
|
stubs_mipsx.s | 42 TEXT ·Ceil(SB),NOSPLIT,$0 43 JMP ·ceil(SB)
|
/prebuilts/go/linux-x86/src/math/ |
stubs_mips64x.s | 42 TEXT ·Ceil(SB),NOSPLIT,$0 43 JMP ·ceil(SB)
|
stubs_mipsx.s | 42 TEXT ·Ceil(SB),NOSPLIT,$0 43 JMP ·ceil(SB)
|
/external/valgrind/none/tests/mips32/ |
round_fpu64.stdout.exp | 1571 ceil.l.d 0 0.000000 1573 ceil.l.d 457 456.250000 1575 ceil.l.d 3 3.000000 1577 ceil.l.d -1 -1.000000 1579 ceil.l.d 1385 1384.500000 1581 ceil.l.d -7 -7.250000 1583 ceil.l.d 1000000000 1000000000.000000 1585 ceil.l.d -5786 -5786.250000 1587 ceil.l.d 1752 1752.000000 1589 ceil.l.d 1 0.01562 [all...] |
round.stdout.exp | 2 ceil.w.s 0 0.000000 4 ceil.w.s 457 456.250000 6 ceil.w.s 3 3.000000 8 ceil.w.s -1 -1.000000 10 ceil.w.s 1385 1384.500000 12 ceil.w.s -7 -7.250000 14 ceil.w.s 1000000000 1000000000.000000 16 ceil.w.s -5786 -5786.250000 18 ceil.w.s 1752 1752.000000 20 ceil.w.s 1 0.01562 [all...] |
/external/valgrind/none/tests/mips64/ |
round.stdout.exp | 2 ceil.w.s 0 0.000000 4 ceil.w.s 457 456.250000 6 ceil.w.s 3 3.000000 8 ceil.w.s -1 -1.000000 10 ceil.w.s 1385 1384.500000 12 ceil.w.s -7 -7.250000 14 ceil.w.s 1000000000 1000000000.000000 16 ceil.w.s -5786 -5786.500000 18 ceil.w.s 1752 1752.000000 20 ceil.w.s 1 0.01562 [all...] |
/external/clang/test/CodeGen/ |
arm64-vrnd.c | 32 // CHECK: call <2 x float> @llvm.ceil.v2f32(<2 x float> 34 // CHECK: call <4 x float> @llvm.ceil.v4f32(<4 x float> 36 // CHECK: call <2 x double> @llvm.ceil.v2f64(<2 x double>
|
/external/llvm/test/CodeGen/ARM/ |
arm32-round-conv.ll | 62 %call = call double @ceil(double %a) nounwind readnone 71 %call = call double @ceil(double %a) nounwind readnone 115 declare double @ceil(double) nounwind readnone
|
arm32-rounding.ll | 31 ; SP: b ceil 35 %call = call double @ceil(double %a) nounwind readnone 110 declare double @ceil(double) nounwind readnone
|
/external/llvm/test/Transforms/InstCombine/ |
double-float-shrink-2.ll | 21 ; DONT-SIMPLIFY: call double @ceil( 28 declare double @ceil(double) 45 %E = call double @ceil(double %D)
|
/bionic/libc/stdio/ |
floatio.h | 47 * be ceil(log10(LDBL_MAX_10_EXP)) or, if hexadecimal floating point 48 * conversions are supported, ceil(log10(LDBL_MAX_EXP)). But since it
|
/cts/hostsidetests/theme/ |
avd.py | 79 width_px = int(math.ceil(width_dp * density / 1600) * 10) 80 height_px = int(math.ceil(height_dp * density / 1600) * 10)
|
/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/ |
floatio.h | 48 * be ceil(log10(LDBL_MAX_10_EXP)) or, if hexadecimal floating point
49 * conversions are supported, ceil(log10(LDBL_MAX_EXP)). But since it
|
/external/mesa3d/prebuilt-intermediates/glsl/ |
ir_expression_operation_strings.h | 59 "ceil", 175 "ceil",
|
/frameworks/support/v7/cardview/src/android/support/v7/widget/ |
CardViewApi21Impl.java | 93 int hPadding = (int) Math.ceil(RoundRectDrawableWithShadow 95 int vPadding = (int) Math.ceil(RoundRectDrawableWithShadow
|
/prebuilts/ndk/r10/platforms/android-12/arch-arm/usr/lib/ |
libm.so | |