Searched refs:ceil (Results 1 - 25 of 180) sorted by relevance

12345678

/external/libvpx/libvpx/vpx_ports/
H A Dmsvc.h25 return ceil(x - 0.5);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowFloatMath.java32 public static float ceil(float value) { method in class:ShadowFloatMath
33 return (float) Math.ceil(value);
/external/openfst/src/extensions/far/
H A Dstrings.cc37 return nline ? ceil(log10(nline + 1)) : 1;
/external/v8/test/mjsunit/regress/
H A Dregress-2326.js36 while (--iterations > 0) accumulator = Math.ceil(accumulator);
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncCeiling.java45 return new XNumber(Math.ceil(m_arg0.execute(xctxt).num()));
/external/iproute2/tc/
H A Dq_htb.c39 " [ceil R2] [cburst B2] [mtu MTU] [quantum Q]\n"
45 " ceil definite upper class rate (no borrows) {rate}\n"
46 " cburst burst but for ceil {computed}\n"
166 } else if (strcmp(*argv, "ceil") == 0) {
168 if (opt.ceil.rate) {
169 fprintf(stderr, "Double \"ceil\" spec\n");
172 if (get_rate(&opt.ceil.rate, *argv)) {
173 explain1("ceil");
206 /* if ceil params are missing, use the same as rate */
207 if (!opt.ceil
[all...]
/external/libnl/lib/route/sch/
H A Dhtb.c118 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
427 rtnl_htb_set_ceil(struct rtnl_class *class, uint32_t ceil) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
H A DElitisticListPopulation.java81 int boundIndex = (int) FastMath.ceil((1.0 - this.getElitismRate()) * oldChromosomes.size());
/external/llvm/test/MC/Mips/
H A Dmips-reginfo-fp32.s29 # ceil.w.s - Reads $f8 and writes to $f10.
30 ceil.w.s $f10, $f8
H A Dmips-reginfo-fp64.s51 # ceil.w.s - Reads $f8 and writes to $f10.
52 ceil.w.s $f10, $f8
/external/openfst/src/include/fst/extensions/far/
H A Dinfo.h106 if (ceil(log10(info.nstate)) + 2 > wnstate)
107 wnstate = ceil(log10(info.nstate)) + 2;
108 if (ceil(log10(info.narc)) + 2 > wnarc)
109 wnarc = ceil(log10(info.narc)) + 2;
/external/valgrind/none/tests/mips32/
H A Dround_fpu64.stdout.exp1571 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
[all...]
H A Dround.stdout.exp2 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
[all...]
/external/clang/test/CodeGen/
H A Dlibcalls-fno-builtin.c6 double ceil(double x);
31 double t1(double x) { return ceil(x); }
33 // CHECK: ceil
/external/v8/test/mjsunit/
H A Dparse-int-float.js83 assertEquals(Math.ceil(x), parseInt(x));
85 assertEquals(Math.ceil(x), parseInt(x));
/external/fonttools/Lib/fontTools/misc/
H A DarrayTools.py27 xMax = int(math.ceil(xMax))
29 yMax = int(math.ceil(yMax))
122 xMax = int(math.ceil(xMax))
123 yMax = int(math.ceil(yMax))
/external/fonttools/Tools/fontTools/misc/
H A DarrayTools.py27 xMax = int(math.ceil(xMax))
29 yMax = int(math.ceil(yMax))
122 xMax = int(math.ceil(xMax))
123 yMax = int(math.ceil(yMax))
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
H A DLRUCache.java54 int hashTableCapacity = (int) Math.ceil(cacheSize / LRUCache.hashTableLoadFactor) + 1;
/external/llvm/utils/lit/lit/
H A Dutil.py120 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/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
H A DTwoSecondIntersectionFinder.java53 int fragmentCount = (int)Math.ceil(trackLength / 2) - 1;
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
H A DBitReaderBuffer.java31 buffer.position(initialPos + (int) Math.ceil((double) position / 8));
/external/smali/util/src/main/java/org/jf/util/
H A DStringWrapper.java85 arr = enlargeArray(arr, (int)(Math.ceil((arr.length + 1) * 1.5)));
/external/llvm/include/llvm/Transforms/Utils/
H A DVectorUtils.h43 case Intrinsic::ceil:
174 case LibFunc::ceil:
177 return checkUnaryFloatSignature(*CI, Intrinsic::ceil);
/external/skia/include/core/
H A DSkFloatingPoint.h72 #define sk_float_ceil(x) (float)::ceil(x)
131 #define sk_double_ceil(x) ceil(x)
134 #define sk_double_ceil2int(x) (int)ceil(x)
/external/skia/src/animator/
H A DSkDisplayMath.cpp40 SK_FUNCTION(ceil),
67 (SkFunctionParamType) SkType_Float, // ceil
112 SK_MEMBER_FUNCTION(ceil, Float),
157 case SK_FUNCTION(ceil):

Completed in 924 milliseconds

12345678