HomeSort by relevance Sort by last modified time
    Searched full:ceil (Results 201 - 225 of 1738) sorted by null

1 2 3 4 5 6 7 891011>>

  /development/ndk/platforms/android-23/arch-arm64/symbols/
libm.so.versions.txt 54 ceil;
  /development/ndk/platforms/android-23/arch-mips/symbols/
libm.so.functions.txt 50 ceil
libm.so.versions.txt 54 ceil;
  /development/ndk/platforms/android-23/arch-mips64/symbols/
libm.so.functions.txt 50 ceil
libm.so.versions.txt 54 ceil;
  /development/ndk/platforms/android-23/arch-x86/symbols/
libm.so.functions.txt 50 ceil
libm.so.versions.txt 54 ceil;
  /development/ndk/platforms/android-23/arch-x86_64/symbols/
libm.so.functions.txt 50 ceil
libm.so.versions.txt 54 ceil;
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncCeiling.java 45 return new XNumber(Math.ceil(m_arg0.execute(xctxt).num()));
  /external/libvpx/libvpx/vpx_ports/
bitops.h 19 # include <math.h> // the ceil() definition must precede intrin.h
  /external/llvm/utils/lit/lit/
util.py 120 power = int(math.ceil(math.log(maxValue, 10)))
123 N = int(math.ceil(maxValue / barH))
142 pDigits = int(math.ceil(math.log(maxValue, 10)))
146 cDigits = int(math.ceil(math.log(len(items), 10)))
  /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/opencv3/modules/core/misc/java/test/
RotatedRectTest.java 37 assertTrue((r.br().x >= Math.ceil(center.x + halfDiagonal)) && (r.br().y >= Math.ceil(center.y + halfDiagonal)));
39 assertTrue((r.br().x - Math.ceil(center.x + halfDiagonal)) <= 1 && (r.br().y - Math.ceil(center.y + halfDiagonal)) <= 1);
  /external/valgrind/none/tests/mips64/
round.c 14 UNOPfw("ceil.w.s");
19 UNOPdw("ceil.w.d");
54 UNOPsl("ceil.l.s");
59 UNOPdl("ceil.l.d");
  /external/webrtc/webrtc/modules/audio_processing/ns/
defines.h 28 #define IP_LENGTH (ANAL_BLOCKL_MAX >> 1) // must be at least ceil(2 + sqrt(ANAL_BLOCKL_MAX/2))
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/arrowscroll/
MultiPageTextWithPaddingTest.java 57 int scrollsNeeded = (int)Math.ceil(Math.max(0.0f,
  /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);
  /platform_testing/libraries/aupt-lib/src/android/support/test/aupt/
JankStat.java 248 int perc50 = (int)Math.ceil(wgtAvgPercentile50);
249 int perc90 = (int)Math.ceil(wgtAvgPercentile90);
250 int perc95 = (int)Math.ceil(wgtAvgPercentile95);
251 int perc99 = (int)Math.ceil(wgtAvgPercentile99);
  /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);
  /system/extras/libfec/include/fec/
ecc.h 38 /* computes ceil(x / y) */
  /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 61 %call = tail call double @ceil(double %a) nounwind readnone
65 declare double @ceil(double) nounwind readnone
163 %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...]
  /prebuilts/gdb/darwin-x86/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...]

Completed in 1805 milliseconds

1 2 3 4 5 6 7 891011>>