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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_systemdependent.h 15 # include <math.h> // the ceil() definition must precede intrin.h
39 return (int)ceil(x - 0.5);
  /external/libvpx/libvpx/vp9/common/
vp9_systemdependent.h 15 # include <math.h> // the ceil() definition must precede intrin.h
39 return (int)ceil(x - 0.5);
  /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)
rounding-ops.ll 56 %call = tail call double @ceil(double %x) nounwind readnone
63 declare double @ceil(double) nounwind readnone
  /external/llvm/test/CodeGen/X86/
vec_floor.ll 44 %t = call <2 x double> @llvm.ceil.v2f64(<2 x double> %p)
47 declare <2 x double> @llvm.ceil.v2f64(<2 x double> %p)
53 %t = call <4 x float> @llvm.ceil.v4f32(<4 x float> %p)
56 declare <4 x float> @llvm.ceil.v4f32(<4 x float> %p)
62 %t = call <4 x double> @llvm.ceil.v4f64(<4 x double> %p)
65 declare <4 x double> @llvm.ceil.v4f64(<4 x double> %p)
71 %t = call <8 x float> @llvm.ceil.v8f32(<8 x float> %p)
74 declare <8 x float> @llvm.ceil.v8f32(<8 x float> %p)
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
RectShape.java 43 outline.setRect((int) Math.ceil(rect.left), (int) Math.ceil(rect.top),
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_systemdependent.h 15 # include <math.h> // the ceil() definition must precede intrin.h
39 return (int)ceil(x - 0.5);
  /external/valgrind/main/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/main/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...]
  /libcore/luni/src/test/resources/
math_important_numbers.csv     [all...]
  /external/chromium_org/v8/test/webkit/
math.js 108 shouldBe("Math.ceil(NaN)", "NaN");
109 shouldBe("Math.ceil(0)", "0");
110 shouldBe("Math.ceil(-0)", "-0");
111 shouldBe("Math.ceil(-0.5)", "-0");
112 shouldBe("Math.ceil(1)", "1");
113 shouldBe("Math.ceil(-1)", "-1");
114 shouldBe("Math.ceil(1.1)", "2");
115 shouldBe("Math.ceil(-1.1)", "-1");
116 shouldBe("Math.ceil(Number.MIN_VALUE)", "1");
117 shouldBe("Math.ceil(-Number.MIN_VALUE)", "-0")
    [all...]
  /art/test/082-inline-execute/src/
Main.java 426 Assert.assertEquals(Math.ceil(+0.0), +0.0d, 0.0);
427 Assert.assertEquals(Math.ceil(-0.0), -0.0d, 0.0);
428 Assert.assertEquals(Math.ceil(-0.9), -0.0d, 0.0);
429 Assert.assertEquals(Math.ceil(-0.5), -0.0d, 0.0);
430 Assert.assertEquals(Math.ceil(0.0), -0.0d, 0.0);
431 Assert.assertEquals(Math.ceil(+2.0), +2.0d, 0.0);
432 Assert.assertEquals(Math.ceil(+2.1), +3.0d, 0.0);
433 Assert.assertEquals(Math.ceil(+2.5), +3.0d, 0.0);
434 Assert.assertEquals(Math.ceil(+2.9), +3.0d, 0.0);
435 Assert.assertEquals(Math.ceil(+3.0), +3.0d, 0.0)
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkFloatBits.cpp 12 SkFloatBits_toInt[Floor, Round, Ceil] are identical except for what they
16 Ceil - adds (1 << exp) - 1
20 as that value (0x80000000) "does the right thing" for Ceil. Note that it
21 doesn't for Floor/Round/Ceil, hence the explicit check.
134 // same as (int)ceil(float)
  /external/skia/src/core/
SkFloatBits.cpp 12 SkFloatBits_toInt[Floor, Round, Ceil] are identical except for what they
16 Ceil - adds (1 << exp) - 1
20 as that value (0x80000000) "does the right thing" for Ceil. Note that it
21 doesn't for Floor/Round/Ceil, hence the explicit check.
125 // same as (int)ceil(float)
  /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>
libcalls-fno-builtin.c 6 double ceil(double x);
31 double t1(double x) { return ceil(x); }
33 // CHECK: ceil
  /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)
  /external/chromium_org/chrome/browser/ui/cocoa/website_settings/
split_block_button.mm 266 std::ceil(std::max(leftSize.width + rightSize.width,
268 std::ceil(std::max(leftSize.height, rightSize.height)));
298 return NSMakeRect(0, 0, std::ceil(size.width), std::ceil(size.height));
338 return NSMakeRect(0, 0, std::ceil(size.width), std::ceil(size.height));
  /bionic/libc/upstream-openbsd/lib/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
  /external/chromium_org/chrome/browser/ui/cocoa/find_bar/
find_bar_text_field_cell.mm 29 return kResultsXOffset + ceil([resultsString size].width) +
105 ceil([resultsString_ size].width),
  /frameworks/av/include/media/stagefright/foundation/
AUtils.h 33 /* == ceil(nom / den). T must be integer type, den must not be 0 */
43 /* == ceil(nom / den) * den. T must be integer type, alignment must be positive power of 2 */
  /frameworks/support/v7/cardview/api21/android/support/v7/widget/
CardViewApi21.java 88 int hPadding = (int) Math.ceil(RoundRectDrawableWithShadow
90 int vPadding = (int) Math.ceil(RoundRectDrawableWithShadow
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/lib/
libm.so 
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/lib/
libm.so 

Completed in 1725 milliseconds

12 3 4 5 6 7 8 91011>>