/external/mesa3d/src/glsl/builtins/profiles/ |
100.glsl | 106 float ceil(float x); 107 vec2 ceil(vec2 x); 108 vec3 ceil(vec3 x); 109 vec4 ceil(vec4 x);
|
/external/valgrind/main/none/tests/mips64/ |
round.c | 13 UNOPfw("ceil.w.s"); 18 UNOPdw("ceil.w.d"); 53 UNOPsl("ceil.l.s"); 58 UNOPdl("ceil.l.d");
|
/frameworks/base/core/java/com/android/internal/view/animation/ |
FallbackLUTInterpolator.java | 48 int numAnimFrames = (int) Math.ceil(duration / animIntervalMs);
|
/frameworks/base/core/tests/coretests/src/android/widget/scroll/arrowscroll/ |
MultiPageTextWithPaddingTest.java | 55 int scrollsNeeded = (int)Math.ceil(Math.max(0.0f,
|
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/ |
cmath | 65 using ::ceil;
|
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/ |
cmath | 65 using ::ceil;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/ui/ |
StretchesViewer.java | 247 dest.x = (int) Math.ceil(p.dest.x * ratio); 248 dest.y = (int) Math.ceil(p.dest.y * ratio); 249 dest.width = (int) Math.ceil(p.dest.width * ratio); 250 dest.height = (int) Math.ceil(p.dest.height * ratio);
|
/external/chromium_org/chrome/browser/ui/cocoa/location_bar/ |
origin_chip_decoration.mm | 168 icon_y_inset = std::ceil(icon_y_inset); 169 icon_x_leading_offset = std::ceil(icon_x_leading_offset); 234 std::ceil([label_ sizeWithAttributes:attributes_].width) +
|
/external/chromium_org/media/tools/constrained_network_server/ |
traffic_control_unittest.py | 48 '256kbit ceil 256kbit', 71 '%dkbit ceil %dkbit' % (traffic_control._DEFAULT_MAX_BANDWIDTH_KBIT, 99 '256kbit ceil 256kbit',
|
/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/llvm/test/CodeGen/AArch64/ |
arm64-rounding.ll | 63 %call = tail call double @ceil(double %a) nounwind readnone 67 declare double @ceil(double) nounwind readnone 165 %call = tail call double @ceil(double %a) nounwind readnone
|
arm64-vfloatintrinsics.ll | 84 ; CHECK: test_v2f32.ceil: 85 define %v2f32 @test_v2f32.ceil(%v2f32 %a) { 87 %1 = call %v2f32 @llvm.ceil.v2f32(%v2f32 %a) 122 declare %v2f32 @llvm.ceil.v2f32(%v2f32) #0 208 ; CHECK: test_v4f32.ceil: 209 define %v4f32 @test_v4f32.ceil(%v4f32 %a) { 211 %1 = call %v4f32 @llvm.ceil.v4f32(%v4f32 %a) 246 declare %v4f32 @llvm.ceil.v4f32(%v4f32) #0 332 ; CHECK: test_v2f64.ceil: 333 define %v2f64 @test_v2f64.ceil(%v2f64 %a) [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/ |
MathExtras.h | 57 // Work around a bug in the Mac OS X libc where ceil(-0.1) return +0. 58 inline double wtf_ceil(double x) { return copysign(ceil(x), x); } 60 #define ceil(x) wtf_ceil(x) macro 84 double integer = ceil(num); 100 inline double trunc(double num) { return num > 0 ? floor(num) : ceil(num); }
|
/prebuilts/python/darwin-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...] |
/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/chromium_org/content/browser/resources/media/ |
timeline_graph_view.js | 227 var time = Math.ceil(startTime / timeStep) * timeStep; 427 // Math.ceil(range / stepSize) + 1 433 if (Math.ceil(range / stepSize) + 1 <= maxLabels) 436 if (Math.ceil(range / (stepSize * 2)) + 1 <= maxLabels) { 441 if (Math.ceil(range / (stepSize * 5)) + 1 <= maxLabels) { 451 this.max_ = Math.ceil(maxValue / stepSize) * stepSize;
|
/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/include/llvm/Transforms/Utils/ |
VectorUtils.h | 41 case Intrinsic::ceil: 164 case LibFunc::ceil: 167 return checkUnaryFloatSignature(*CI, Intrinsic::ceil);
|
/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) );
|
/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 | 96 charTop = (int) Math.ceil(fm.top); 100 charWidth = (int) Math.ceil(widths[0]); 101 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));
|