/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_math.py | 265 self.assertRaises(TypeError, math.ceil) 267 self.assertEqual(float, type(math.ceil(1))) 268 self.assertEqual(float, type(math.ceil(1L))) 269 self.assertEqual(float, type(math.ceil(1.0))) 270 self.ftest('ceil(0.5)', math.ceil(0.5), 1) 271 self.ftest('ceil(1.0)', math.ceil(1.0), 1) 272 self.ftest('ceil(1.5)', math.ceil(1.5), 2 [all...] |
/external/llvm/test/Transforms/InstCombine/ |
win-math.ll | 55 declare double @ceil(double %x) 59 ; WIN32: double @ceil 62 ; WIN64-NOT: double @ceil 65 ; MINGW32-NOT: double @ceil 68 ; MINGW64-NOT: double @ceil 70 %2 = call double @ceil(double %1)
|
/external/llvm/test/CodeGen/WebAssembly/ |
f32.ll | 11 declare float @llvm.ceil.f32(float) 85 ; CHECK: f32.ceil $push0=, $0{{$}} 88 %a = call float @llvm.ceil.f32(float %x)
|
f64.ll | 11 declare double @llvm.ceil.f64(double) 85 ; CHECK: f64.ceil $push0=, $0{{$}} 88 %a = call double @llvm.ceil.f64(double %x)
|
/external/wpa_supplicant_8/src/crypto/ |
aes-gcm.c | 203 * s = 128 * ceil(len(IV)/128) - len(IV) 235 * u = 128 * ceil[len(C)/128] - len(C) 236 * v = 128 * ceil[len(A)/128] - len(A)
|
/ndk/tests/device/test-gnustl-full/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) );
|
/ndk/tests/device/test-stlport/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) );
|
/packages/apps/Terminal/src/com/android/terminal/ |
TerminalView.java | 99 charTop = (int) Math.ceil(fm.top); 103 charWidth = (int) Math.ceil(widths[0]); 104 charHeight = (int) Math.ceil(fm.descent - fm.top);
|
/bionic/libstdc++/include/ |
cmath | 67 using ::ceil;
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/ |
NumericSprite.java | 39 mWidth[i] = (int) Math.ceil(mLabelMaker.getWidth(i));
|
/external/autotest/client/cros/video/ |
sequence_generator.py | 76 math.ceil((samples_per_min * duration) / 60.0))
|
/external/chromium-trace/catapult/experimental/ |
commits.py | 53 c = math.ceil(k)
|
/external/llvm/test/CodeGen/PowerPC/ |
builtins-ppc-elf2-abi.ll | 46 %2 = call <2 x double> @llvm.ceil.v2f64(<2 x double> %1) 58 %2 = call <4 x float> @llvm.ceil.v4f32(<4 x float> %1) 168 declare <2 x double> @llvm.ceil.v2f64(<2 x double>) 171 declare <4 x float> @llvm.ceil.v4f32(<4 x float>)
|
/external/llvm/test/CodeGen/Thumb2/ |
float-intrinsics-double.ll | 147 declare double @llvm.ceil.f64(double %Val) 150 ; SOFT: {{(bl|b)}} ceil 151 ; VFP4: b ceil 153 %1 = call double @llvm.ceil.f64(double %a)
|
/external/mesa3d/src/glsl/builtins/profiles/ |
110.glsl | 106 float ceil(float x); 107 vec2 ceil(vec2 x); 108 vec3 ceil(vec3 x); 109 vec4 ceil(vec4 x);
|
120.glsl | 106 float ceil(float x); 107 vec2 ceil(vec2 x); 108 vec3 ceil(vec3 x); 109 vec4 ceil(vec4 x);
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/ |
TwoSecondIntersectionFinder.java | 53 int fragmentCount = (int)Math.ceil(trackLength / 2) - 1;
|
/external/skia/site/user/api/ |
skrect.md | 47 // and ceil to right/bottom.
|
/external/v8/test/mjsunit/regress/ |
regress-2326.js | 36 while (--iterations > 0) accumulator = Math.ceil(accumulator);
|
/external/valgrind/none/tests/mips32/ |
round.c | 22 "ceil.w.s", "ceil.w.d", 161 UNOPfw("ceil.w.s"); 166 UNOPdw("ceil.w.d");
|
/external/valgrind/none/tests/mips64/ |
macro_fpu.h | 37 "ceil.w.s", "ceil.w.d", 41 "ceil.l.s", "ceil.l.d",
|
/external/webrtc/webrtc/common_audio/ |
real_fourier_ooura.cc | 31 return static_cast<size_t>(2 + std::ceil(std::sqrt(
|
/frameworks/av/media/libeffects/lvm/lib/Common/src/ |
Core_MixInSoft_D32C31_SAT.c | 47 TargetTimesOneMinAlpha +=2; /* Ceil*/
|
Core_MixSoft_1St_D32C31_WRA.c | 48 TargetTimesOneMinAlpha +=2; /* Ceil*/
|
/frameworks/base/core/java/com/android/internal/view/animation/ |
FallbackLUTInterpolator.java | 49 int numAnimFrames = Math.max(2, (int) Math.ceil(((double) duration) / animIntervalMs));
|