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

1 2 3 4 5 6 7 891011>>

  /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))
  /external/iproute2/man/man8/
tc-htb.8 23 .B [ ceil
119 ceil rate
126 .B ceil
138 Due to Unix timing constraints, the maximum ceil rate is not infinite and may in fact be quite low. On Intel,
  /external/libcxx/test/std/utilities/time/time.duration/time.duration.alg/
abs.fail.cpp 13 // ceil
  /external/libnl/lib/cli/qdisc/
htb.c 76 " --ceil=RATE Rate limit while borrowing (default: equal to --rate).\n"
80 " --cburst=SIZE Max charge size of ceil rate burst buffer (default: auto)\n"
106 { "ceil", 1, 0, ARG_CEIL },
135 nl_cli_fatal(rate, "Unable to parse htb ceil rate "
  /external/llvm/test/Analysis/CostModel/X86/
intrinsic-cost.ll 15 %2 = call <4 x float> @llvm.ceil.v4f32(<4 x float> %wide.load)
25 ; CORE2: Cost Model: Found an estimated cost of 46 for instruction: %2 = call <4 x float> @llvm.ceil.v4f32(<4 x float> %wide.load)
28 ; COREI7: Cost Model: Found an estimated cost of 1 for instruction: %2 = call <4 x float> @llvm.ceil.v4f32(<4 x float> %wide.load)
32 declare <4 x float> @llvm.ceil.v4f32(<4 x float>) nounwind readnone
  /external/llvm/test/CodeGen/PowerPC/
qpx-rounding-ops.ll 59 %call = tail call <4 x float> @llvm.ceil.v4f32(<4 x float> %x) nounwind readnone
69 declare <4 x float> @llvm.ceil.v4f32(<4 x float>) nounwind readnone
72 %call = tail call <4 x double> @llvm.ceil.v4f64(<4 x double> %x) nounwind readnone
82 declare <4 x double> @llvm.ceil.v4f64(<4 x double>) nounwind readnone
rounding-ops.ll 67 %call = tail call double @ceil(double %x) nounwind readnone
76 declare double @ceil(double) nounwind readnone
  /external/llvm/test/CodeGen/SystemZ/
vec-round-01.ll 8 declare double @llvm.ceil.f64(double)
14 declare <2 x double> @llvm.ceil.v2f64(<2 x double>)
46 %res = call <2 x double> @llvm.ceil.v2f64(<2 x double> %val)
98 %res = call double @llvm.ceil.f64(double %scalar)
  /external/llvm/test/CodeGen/X86/
avx512-round.ll 22 %res = call <16 x float> @llvm.ceil.v16f32(<16 x float> %a)
25 declare <16 x float> @llvm.ceil.v16f32(<16 x float> %p)
30 %res = call <8 x double> @llvm.ceil.v8f64(<8 x double> %a)
33 declare <8 x double> @llvm.ceil.v8f64(<8 x double> %p)
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
BitReaderBuffer.java 31 buffer.position(initialPos + (int) Math.ceil((double) position / 8));
  /external/pdfium/xfa/fxbarcode/
BC_TwoDimWriter.cpp 119 ceil((FX_FLOAT)m_Width / (FX_FLOAT)outputWidth));
121 outputHeight * ceil((FX_FLOAT)m_Height / (FX_FLOAT)outputHeight));
124 int32_t multiX = (int32_t)ceil((FX_FLOAT)outputWidth / (FX_FLOAT)tempWidth);
125 int32_t multiY = (int32_t)ceil((FX_FLOAT)outputHeight / (FX_FLOAT)tempHeight);
  /external/swiftshader/third_party/LLVM/utils/lit/lit/
Util.py 102 power = int(math.ceil(math.log(maxValue, 10)))
105 N = int(math.ceil(maxValue / barH))
124 pDigits = int(math.ceil(math.log(maxValue, 10)))
128 cDigits = int(math.ceil(math.log(len(items), 10)))
  /external/valgrind/none/tests/mips32/
round_fpu64.c 22 "ceil.l.s", "ceil.l.d"
170 UNOPsl("ceil.l.s");
176 UNOPdl("ceil.l.d");
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherAppWidgetProviderInfo.java 88 spanX = Math.max(1, (int) Math.ceil(
90 spanY = Math.max(1, (int) Math.ceil(
93 minSpanX = Math.max(1, (int) Math.ceil(
95 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));
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.duration/time.duration.alg/
abs.fail.cpp 13 // ceil
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/
math.s 8 .float $ceil(1.5)
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorTraits.h 250 // R' = ceil(float(R) / float(S))
251 // C' = ceil(float(C) / float(S))
252 // where ceil is the ceiling function. The input tensor is padded with 0 as
259 // R' = ceil(float(R - K + 1) / float(S))
260 // C' = ceil(float(C - K + 1) / float(S))
  /art/test/082-inline-execute/src/
Main.java 602 Math.ceil(-0.9);
603 Assert.assertEquals(Math.ceil(+0.0), +0.0d, 0.0);
604 Assert.assertEquals(Math.ceil(-0.0), -0.0d, 0.0);
605 Assert.assertEquals(Math.ceil(-0.9), -0.0d, 0.0);
606 Assert.assertEquals(Math.ceil(-0.5), -0.0d, 0.0);
607 Assert.assertEquals(Math.ceil(0.0), -0.0d, 0.0);
608 Assert.assertEquals(Math.ceil(+2.0), +2.0d, 0.0);
609 Assert.assertEquals(Math.ceil(+2.1), +3.0d, 0.0);
610 Assert.assertEquals(Math.ceil(+2.5), +3.0d, 0.0);
611 Assert.assertEquals(Math.ceil(+2.9), +3.0d, 0.0)
    [all...]
  /cts/tests/tests/util/src/android/util/cts/
HalfTest.java 226 public void ceil() { method in class:HalfTest
227 assertShortEquals(POSITIVE_INFINITY, Half.ceil(POSITIVE_INFINITY));
228 assertShortEquals(NEGATIVE_INFINITY, Half.ceil(NEGATIVE_INFINITY));
229 assertShortEquals(POSITIVE_ZERO, Half.ceil(POSITIVE_ZERO));
230 assertShortEquals(NEGATIVE_ZERO, Half.ceil(NEGATIVE_ZERO));
231 assertShortEquals(NaN, Half.ceil(NaN));
232 assertShortEquals(LOWEST_VALUE, Half.ceil(LOWEST_VALUE));
233 assertEquals(1.0f, toFloat(Half.ceil(MIN_NORMAL)), 1e-6f);
234 assertEquals(1.0f, toFloat(Half.ceil((short) 0x3ff)), 1e-6f);
235 assertEquals(1.0f, toFloat(Half.ceil(toHalf(0.2f))), 1e-6f)
    [all...]
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
float_ieee754.h 71 #define FLT_MIN_10_EXP (-37) /* ceil(log10(b**(emin-1))) */
102 #define DECIMAL_DIG 17 /* ceil((1+p*log10(b))-(b==10) */
  /external/deqp/framework/delibs/debase/
deMathTest.c 50 /* if precision is lost, floor(x) < ceil(x). Else floor(x) == ceil(x) */
  /external/libjpeg-turbo/
jutils.c 76 /* Compute a/b rounded up to next integer, ie, ceil(a/b) */
85 /* Compute a rounded up to next multiple of b, ie, ceil(a/b)*b */
  /external/llvm/test/MC/Mips/
mips-reginfo-fp64.s 51 # ceil.w.s - Reads $f8 and writes to $f10.
52 ceil.w.s $f10, $f8

Completed in 598 milliseconds

1 2 3 4 5 6 7 891011>>