HomeSort by relevance Sort by last modified time
    Searched defs:ceil (Results 1 - 25 of 50) sorted by null

1 2

  /bionic/libm/x86/
ceil.S 33 ENTRY(ceil) function
41 END(ceil)
43 ALIAS_SYMBOL(ceill, ceil);
  /bionic/libm/x86_64/
ceil.S 33 ENTRY(ceil) function
36 END(ceil)
  /external/skia/experimental/xps_to_png/
xps_to_png.cs 22 static int ceil(double x) { return (int)System.Math.Ceiling(x); } method in class:Program
53 ceil(scale * width), ceil(scale * height), dpi, dpi,
  /external/skqp/experimental/xps_to_png/
xps_to_png.cs 22 static int ceil(double x) { return (int)System.Math.Ceiling(x); } method in class:Program
53 ceil(scale * width), ceil(scale * height), dpi, dpi,
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_ceil.c 17 * ceil(x)
22 * Inexact flag raised if x not equal to ceil(x).
33 ceil(double x) function
76 __weak_reference(ceil, ceill);
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
s_ceil.c 19 * ceil(x)
24 * Inexact flag raised if x not equal to ceil(x).
33 ceil(double x) function
  /external/deqp/external/vulkancts/modules/vulkan/texture/
vktSampleVerifierUtil.hpp 150 tcu::Vector<float, Size> ceil (const tcu::Vector<float, Size>& v) function in namespace:vkt::texture::util
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowFloatMath.java 32 protected static float ceil(float value) { method in class:ShadowFloatMath
33 return (float) Math.ceil(value);
  /external/u-boot/board/synopsys/hsdk/
clk-lib.c 13 #define ceil(x, y) ({ ulong __x = (x), __y = (y); (__x + __y - 1) / __y; }) macro
58 mhz_rate = ceil(priv_rate, HZ_IN_MHZ);
  /external/jemalloc/test/unit/
run_quantize.c 60 size_t lrun_size, run_size, floor, ceil; local
68 ceil = run_quantize_ceil(run_size);
73 assert_zu_eq(run_size, ceil,
101 * run_quantize_{floor,ceil}() are monotonic.
115 size_t run_size, floor, ceil; local
119 ceil = run_quantize_ceil(run_size);
122 "Floor should be <= (floor=%zu, run_size=%zu, ceil=%zu)",
123 floor, run_size, ceil);
124 assert_zu_ge(ceil, run_size,
125 "Ceiling should be >= (floor=%zu, run_size=%zu, ceil=%zu)"
    [all...]
  /external/libnl/python/netlink/route/qdisc/
htb.py 65 def ceil(self): member in class:HTBClass
66 ceil = capi.rtnl_htb_get_ceil(self._class._rtnl_class)
67 return util.Rate(ceil)
69 @ceil.setter
70 def ceil(self, value): member in class:HTBClass
125 if self.rate != self.ceil:
126 ret += ' {s|borrow-up-to!k} {a|ceil}'
  /external/tensorflow/tensorflow/lite/kernels/
ceil.cc 24 namespace ceil { namespace in namespace:tflite::ops::builtin
44 optimized_ops::Ceil(GetTensorShape(input), GetTensorData<float>(input),
49 } // namespace ceil
53 /*free=*/nullptr, ceil::Prepare, ceil::Eval};
  /bionic/libm/
builtins.cpp 50 double ceil(double x) { return __builtin_ceil(x); } function
  /external/jemalloc_new/test/unit/
extent_quantize.c 60 size_t lextent_size, extent_size, floor, ceil; local
69 ceil = extent_size_quantize_ceil(extent_size);
75 assert_zu_eq(extent_size, ceil,
109 size_t extent_size, floor, ceil; local
113 ceil = extent_size_quantize_ceil(extent_size);
116 "Floor should be <= (floor=%zu, extent_size=%zu, ceil=%zu)",
117 floor, extent_size, ceil);
118 assert_zu_ge(ceil, extent_size,
120 "ceil=%zu)", floor, extent_size, ceil);
    [all...]
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/utils/
GestureUtils.java 141 public static PointF ceil(PointF p) { method in class:GestureUtils
142 return new PointF((float) Math.ceil(p.x), (float) Math.ceil(p.y));
  /external/clang/lib/Headers/
__clang_cuda_cmath.h 55 __DEVICE__ float ceil(float __x) { return ::ceilf(__x); } function
  /external/skia/include/private/
SkVx.h 23 #include <cmath> // std::ceil, std::floor, std::trunc, std::round, std::sqrt, etc.
256 SIT Vec<1,T> ceil(Vec<1,T> x) { return std:: ceil(x.val); } function in namespace:skvx
284 SINT Vec<N,T> ceil(Vec<N,T> x) { return join( ceil(x.lo), ceil(x.hi)); } function in namespace:skvx
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/tests/
cpu_fusion_test.cc 100 auto ceil = builder.AddInstruction( local
103 HloInstruction::CreateUnary(vshape, HloOpcode::kExp, ceil));
150 auto ceil = builder.AddInstruction( local
155 HloInstruction::CreateConcatenate(cshape, {ceil, ceil}, /*dimension=*/0));
213 // parameter, negate, ceil, concat, and reshape.
231 // ceil = ceil(negate)
232 // add1 = add(negate, ceil)
233 // add2 = add(ceil, negate
247 auto ceil = builder.AddInstruction( local
    [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...]
  /external/eigen/Eigen/src/plugins/
ArrayCwiseUnaryOps.h 370 * \sa <a href="group__CoeffwiseMathFunctions.html#cwisetable_round">Math functions</a>, ceil(), floor()
384 * \sa <a href="group__CoeffwiseMathFunctions.html#cwisetable_floor">Math functions</a>, ceil(), round()
393 /** \returns an expression of the coefficient-wise ceil of *this.
402 ceil() const function
  /external/eigen/Eigen/src/Core/
MathFunctions.h 428 EIGEN_USING_STD_MATH(ceil);
429 return (x > Scalar(0)) ? floor(x + Scalar(0.5)) : ceil(x - Scalar(0.5));
1001 T (ceil)(const T& x) function in namespace:Eigen::numext
1003 EIGEN_USING_STD_MATH(ceil);
1004 return ceil(x);
1009 float ceil(const float &x) { return ::ceilf(x); } function in namespace:Eigen::numext
1012 double ceil(const double &x) { return ::ceil(x); } function in namespace:Eigen::numext
    [all...]
  /external/eigen/Eigen/src/Core/arch/CUDA/
Half.h 425 EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC half ceil(const half& a) { function in namespace:Eigen::half_impl
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorBase.h 316 ceil() const { function in class:Eigen::TensorBase
    [all...]
  /external/llvm/include/llvm/CodeGen/
BasicTTIImpl.h 582 auto ceil = [](unsigned A, unsigned B) { return (A + B - 1) / B; }; local
602 unsigned NumLegalInsts = ceil(VecTySize, VecTyLTSize);
606 unsigned NumEltsPerLegalInst = ceil(NumElts, NumLegalInsts);
784 case Intrinsic::ceil:
    [all...]
  /external/swiftshader/src/Pipeline/
SetupRoutine.cpp 586 Int ceil = -d >> 31; // Ceiling division: remainder <= 0 local
587 x -= ceil;
588 d -= ceil & FDY12;

Completed in 3514 milliseconds

1 2