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

12 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/current/sources/cxx-stl/gabi++/include/
cmath 67 using ::ceil;
  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/gabi++/include/
cmath 67 using ::ceil;
  /prebuilts/ndk/current/sources/cxx-stl/system/include/
cmath 67 using ::ceil;
  /external/libnl/lib/route/sch/
htb.c 118 rtnl_copy_ratespec(&d->ch_ceil, &opts.ceil);
120 d->ch_cbuffer = rtnl_tc_calc_bufsize(opts.cbuffer, opts.ceil.rate);
193 nl_dump(p, " ceil %.2f%s/s (%.0f%s) log %u",
298 /* if not set, configured rate is used as ceil, which implies no borrowing */
300 rtnl_rcopy_ratespec(&opts.ceil, &d->ch_ceil);
302 memcpy(&opts.ceil, &opts.rate, sizeof(struct tc_ratespec));
304 if (opts.ceil.cell_log == UINT8_MAX)
305 opts.ceil.cell_log = compute_cell(opts.ceil.rate, mtu);
317 cbuffer = opts.ceil.rate / nl_get_hz() + mtu
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
ElitisticListPopulation.java 81 int boundIndex = (int) FastMath.ceil((1.0 - this.getElitismRate()) * oldChromosomes.size());
  /external/autotest/client/cros/video/
sequence_generator.py 76 math.ceil((samples_per_min * duration) / 60.0))
  /external/llvm/test/MC/Mips/
mips-reginfo-fp32.s 29 # ceil.w.s - Reads $f8 and writes to $f10.
30 ceil.w.s $f10, $f8
mips-reginfo-fp64.s 51 # ceil.w.s - Reads $f8 and writes to $f10.
52 ceil.w.s $f10, $f8
  /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);
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherAppWidgetProviderInfo.java 85 spanX = Math.max(1, (int) Math.ceil(
87 spanY = Math.max(1, (int) Math.ceil(
90 minSpanX = Math.max(1, (int) Math.ceil(
92 minSpanY = Math.max(1, (int) Math.ceil(
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
MessageBubbleBackground.java 42 (int) (Math.ceil(bubbleWidth / (float) mSnapWidthPixels) * mSnapWidthPixels));
  /packages/apps/Settings/src/com/android/settings/display/
MessageBubbleBackground.java 42 (int) (Math.ceil(bubbleWidth / (float) mSnapWidthPixels) * mSnapWidthPixels));
  /external/iproute2/tc/
q_htb.c 41 " [ceil R2] [cburst B2] [mtu MTU] [quantum Q]\n"
47 " ceil definite upper class rate (no borrows) {rate}\n"
48 " cburst burst but for ceil {computed}\n"
178 } else if (strcmp(*argv, "ceil") == 0) {
181 fprintf(stderr, "Double \"ceil\" spec\n");
185 explain1("ceil");
218 /* if ceil params are missing, use the same as rate */
223 opt.ceil.rate = (ceil64 >= (1ULL << 32)) ? ~0U : ceil64;
232 opt.ceil.overhead = overhead;
235 opt.ceil.mpu = mpu
    [all...]
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfZipCompressor.cpp 68 size_t (ceil (maxInBytes * 0.01))),
154 uLongf outSize = int(ceil(inSize * 1.01)) + 100;
  /frameworks/base/core/tests/benchmarks/src/android/util/
FloatMathBenchmark.java 26 f += FloatMath.ceil(100.123f);
35 f += (float) Math.ceil(100.123f);
  /external/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...]
  /external/opencv3/3rdparty/openexr/Imath/
ImathMath.h 115 static T ceil (T x) {return ::ceil (double(x));} function in struct:Imath::Math
142 static float ceil (float x) {return ::ceilf (x);} function in struct:Imath::Math
  /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...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/
_version133.py 105 nbytes = ceil(nbits/8.)
109 def ceil(x): function
110 """ceil(x) -> int(math.ceil(x))"""
112 return int(math.ceil(x))
125 rangebytes = ceil(math.log(range, 2) / 8.)
181 # t = int(math.ceil(k / math.log(1/q, 2)))
182 t = ceil(k / math.log(1/q, 2))
213 """Returns a prime number of max. 'math.ceil(nbits/8)*8' bits. In
225 nbytes = int(math.ceil(nbits/8.)
    [all...]
  /external/clang/test/CodeGen/
libcalls-fno-builtin.c 6 double ceil(double x);
31 double t1(double x) { return ceil(x); }
33 // CHECK: ceil
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
RoundRectShape.java 99 outline.setRoundRect((int) Math.ceil(rect.left), (int) Math.ceil(rect.top),
  /frameworks/support/v7/cardview/api21/android/support/v7/widget/
CardViewApi21.java 91 int hPadding = (int) Math.ceil(RoundRectDrawableWithShadow
93 int vPadding = (int) Math.ceil(RoundRectDrawableWithShadow
  /system/extras/verity/fec/tests/
fec.py 36 blocks = int(math.ceil(float(size) / blocksize))
37 rounds = int(math.ceil(float(blocks) / (255 - roots)))
  /external/autotest/server/site_tests/video_VDAStressSetup/
video_VDAStressSetup.py 39 shard_size = int(math.ceil(video_count / float(shard_count)))
  /external/fonttools/Lib/fontTools/misc/
arrayTools.py 27 xMax = int(math.ceil(xMax))
29 yMax = int(math.ceil(yMax))
122 xMax = int(math.ceil(xMax))
123 yMax = int(math.ceil(yMax))

Completed in 2286 milliseconds

12 3 4 5 6 7 8 91011>>