HomeSort by relevance Sort by last modified time
    Searched refs:ceilf (Results 1 - 25 of 144) sorted by null

1 2 3 4 5 6

  /bionic/libm/x86_64/
ceilf.S 33 ENTRY(ceilf) function
36 END(ceilf)
  /bionic/libm/arm64/
ceil.S 24 ENTRY(ceilf) function
27 END(ceilf)
  /bionic/libm/x86/
ceilf.S 33 ENTRY(ceilf) function
39 END(ceilf)
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_ceilf.c 25 ceilf(float x) function
  /external/tensorflow/tensorflow/core/kernels/
resize_bilinear_op_gpu.cu.cc 54 (in_y < in_height - 1) ? ceilf(in_y) : in_height - 1;
60 (in_x < in_width - 1) ? ceilf(in_x) : in_width - 1;
104 ? ceilf(original_y)
111 ? ceilf(original_x)
image_resizer_state.h 96 ceilf((out_height - 1) * height_scale) <=
102 ceilf((out_width - 1) * width_scale) <= static_cast<float>(INT_MAX),
crop_and_resize_op_gpu.cu.cc 84 const int bottom_y_index = ceilf(in_y);
88 const int right_x_index = ceilf(in_x);
164 const int bottom_y_index = ceilf(in_y);
168 const int right_x_index = ceilf(in_x);
254 const int bottom_y_index = ceilf(in_y);
258 const int right_x_index = ceilf(in_x);
crop_and_resize_op.cc 252 const int bottom_y_index = ceilf(in_y);
266 const int right_x_index = ceilf(in_x);
442 const int bottom_y_index = ceilf(in_y);
453 const int right_x_index = ceilf(in_x);
614 const int bottom_y_index = ceilf(in_y);
625 const int right_x_index = ceilf(in_x);
resize_bilinear_op.cc 302 std::min(static_cast<int64>(ceilf(in_y)), original_height - 1);
309 std::min(static_cast<int64>(ceilf(in_x)), original_width - 1);
  /frameworks/base/libs/hwui/utils/
MathUtils.h 76 return (int)(ceilf(angleInRads / acos(targetCosVal) / 2)) * 2;
Blur.cpp 41 const float radiusCeil = ceilf(radius);
  /frameworks/native/opengl/libagl/
fp.cpp 67 x = x - ceilf(x + 0.5f) + 1.0f;
  /frameworks/base/libs/hwui/
Rect.h 196 right = ceilf(right - Vertex::GeometryFudgeFactor());
197 bottom = ceilf(bottom - Vertex::GeometryFudgeFactor());
220 right = ceilf(right);
221 bottom = ceilf(bottom);
  /hardware/qcom/display/msm8226/liboverlay/
overlayUtils.cpp 286 float horDscale = ceilf((float)src_w / (float)dst_w);
287 float verDscale = ceilf((float)src_h / (float)dst_h);
290 horDscale = powf(2.0f, ceilf(log2f(horDscale)));
291 verDscale = powf(2.0f, ceilf(log2f(verDscale)));
  /hardware/qcom/display/msm8994/liboverlay/
overlayUtils.cpp 277 float horDscale = ceilf((float)src_w / (float)dst_w);
278 float verDscale = ceilf((float)src_h / (float)dst_h);
282 horDscale = powf(2.0f, ceilf(log2f(horDscale)));
283 verDscale = powf(2.0f, ceilf(log2f(verDscale)));
  /external/mesa3d/src/gallium/auxiliary/util/
u_dirty_surfaces.h 90 MIN2((unsigned)ceilf(pss->max_lod) + psv->u.tex.first_level, psv->u.tex.last_level), flush);
  /hardware/qcom/display/msm8084/liboverlay/
overlayUtils.cpp 290 horDscale = ceilf((float)src_w / (float)dst_w);
291 verDscale = ceilf((float)src_h / (float)dst_h);
294 horDscale = powf(2.0f, ceilf(log2f(horDscale)));
295 verDscale = powf(2.0f, ceilf(log2f(verDscale)));
  /external/llvm/lib/Support/Windows/
explicit_symbols.inc 79 INLINE_DEF_FLOAT_SYMBOL(ceilf, 1)
  /external/skqp/include/private/
SkFloatingPoint.h 39 #define sk_float_ceil(x) ceilf(x)
  /external/v8/src/wasm/
wasm-external-refs.cc 24 void f32_ceil_wrapper(float* param) { *param = ceilf(*param); }
  /external/valgrind/memcheck/tests/
vcpu_fnfns.c 39 printf(" ceilF(%+20.4e) = %+20.4e\n", (double)f, (double)ceilf(f));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
mathinline.h 204 __NTH (ceilf (float __x)) function
  /external/clang/test/CodeGen/
libcall-declarations.c 62 float ceilf(float);
274 F(cbrtl), F(ceil), F(ceilf), F(ceill), F(cos),
361 // CHECK-NOERRNO: declare float @ceilf(float) [[NUW]]
546 // CHECK-ERRNO: declare float @ceilf(float) [[NUW]]
  /external/mesa3d/src/gallium/drivers/radeon/
r600_viewport.c 85 scissor->maxx = ceilf(maxx);
86 scissor->maxy = ceilf(maxy);
  /external/tensorflow/tensorflow/contrib/pi_examples/label_image/
label_image.cc 170 std::min(static_cast<int>(ceilf(in_y)), (image_height - 1));
179 std::min(static_cast<int>(ceilf(in_x)), (image_width - 1));

Completed in 550 milliseconds

1 2 3 4 5 6