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

1 2 3 4 5 6 7

  /bionic/libm/x86_64/
floorf.S 33 ENTRY(floorf) function
36 END(floorf)
  /bionic/libm/arm64/
floor.S 24 ENTRY(floorf) function
27 END(floorf)
  /bionic/libm/x86/
floorf.S 33 ENTRY(floorf) function
39 END(floorf)
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_roundf.c 44 t = floorf(x);
49 t = floorf(-x);
s_floorf.c 20 * floorf(x)
25 * Inexact flag raised if x not equal to floorf(x).
34 floorf(float x) function
  /device/google/contexthub/firmware/lib/libm/
sf_floor.c 17 * floorf(x)
22 * Inexact flag raised if x not equal to floorf(x).
34 float floorf(float x) function
36 float floorf(x)
77 return (double) floorf((float) x);
  /packages/services/BuiltInPrintService/jni/lib/
printable_area.c 53 job_params->printable_area_width = (unsigned int) floorf(((job_params->page_width -
55 job_params->printable_area_height = (unsigned int) floorf(((job_params->page_height -
66 job_params->print_top_margin = floorf(
69 job_params->print_top_margin = floorf(((top_margin) * (float) job_params->pixel_units));
72 job_params->print_left_margin = floorf(((job_params->job_left_margin - left_margin) *
75 job_params->print_left_margin = floorf(
79 job_params->print_right_margin = floorf(((job_params->job_right_margin - right_margin) *
82 job_params->print_right_margin = floorf(
86 job_params->print_bottom_margin = floorf(
90 job_params->print_bottom_margin = floorf(
    [all...]
  /frameworks/base/libs/hwui/
Rect.h 194 left = floorf(left + Vertex::GeometryFudgeFactor());
195 top = floorf(top + Vertex::GeometryFudgeFactor());
203 left = floorf(left + 0.5f - Vertex::GeometryFudgeFactor());
204 top = floorf(top + 0.5f - Vertex::GeometryFudgeFactor());
205 right = floorf(right + 0.5f + Vertex::GeometryFudgeFactor());
206 bottom = floorf(bottom + 0.5f + Vertex::GeometryFudgeFactor());
211 left = floorf(left + 0.5f);
212 top = floorf(top + 0.5f);
213 right = floorf(right + 0.5f);
214 bottom = floorf(bottom + 0.5f)
    [all...]
Patch.cpp 113 y2 = y1 + floorf(segment * stretchY + 0.5f);
161 x2 = x1 + floorf(segment * stretchX + 0.5f);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
geometry_utils.h 25 ? (floorf((f) * 10000.0f) / 10000.0f) : (f)
  /external/mesa3d/include/
c99_math.h 70 if (f - floorf(f) == 0.5f) {
96 if (f - floorf(f) == 0.5f) {
  /frameworks/native/services/surfaceflinger/
Transform.cpp 213 r.left = floorf(min(lt[0], rt[0], lb[0], rb[0]));
214 r.top = floorf(min(lt[1], rt[1], lb[1], rb[1]));
218 r.left = floorf(min(lt[0], rt[0], lb[0], rb[0]) + 0.5f);
219 r.top = floorf(min(lt[1], rt[1], lb[1], rb[1]) + 0.5f);
220 r.right = floorf(max(lt[0], rt[0], lb[0], rb[0]) + 0.5f);
221 r.bottom = floorf(max(lt[1], rt[1], lb[1], rb[1]) + 0.5f);
262 int xpos = floorf(tx() + 0.5f);
263 int ypos = floorf(ty() + 0.5f);
  /external/tensorflow/tensorflow/core/kernels/
resize_bilinear_op_gpu.cu.cc 52 const int top_y_index = floorf(in_y);
58 const int left_x_index = floorf(in_x);
102 const int top_y_index = floorf(original_y);
109 const int left_x_index = floorf(original_x);
resize_nearest_neighbor_op_gpu.cu.cc 53 : static_cast<int>(floorf(out_y * height_scale)),
57 : static_cast<int>(floorf(out_x * width_scale)),
82 : static_cast<int>(floorf(in_y * height_scale)),
86 : static_cast<int>(floorf(in_x * width_scale)),
resize_nearest_neighbor_op.cc 103 : static_cast<int64>(floorf(y * height_scale)),
108 : static_cast<int64>(floorf(x * width_scale)),
215 : static_cast<int64>(floorf(y * height_scale)),
220 : static_cast<int64>(floorf(x * width_scale)),
crop_and_resize_op_gpu.cu.cc 83 const int top_y_index = floorf(in_y);
87 const int left_x_index = floorf(in_x);
163 const int top_y_index = floorf(in_y);
167 const int left_x_index = floorf(in_x);
253 const int top_y_index = floorf(in_y);
257 const int left_x_index = floorf(in_x);
  /frameworks/native/opengl/libagl/
fp.cpp 24 return GGLfixed(floorf(v * 65536.0f + 0.5f));
  /external/llvm/lib/Support/Windows/
explicit_symbols.inc 83 INLINE_DEF_FLOAT_SYMBOL(floorf, 1)
  /external/mesa3d/src/mesa/program/
prog_execute.c 588 floor_t0 = floorf(t[0]);
627 result[0] = floorf(a[0]);
628 result[1] = floorf(a[1]);
629 result[2] = floorf(a[2]);
630 result[3] = floorf(a[3]);
638 result[0] = a[0] - floorf(a[0]);
639 result[1] = a[1] - floorf(a[1]);
640 result[2] = a[2] - floorf(a[2]);
641 result[3] = a[3] - floorf(a[3]);
    [all...]
  /device/google/contexthub/firmware/os/algos/calibration/magnetometer/mag_sphere_fit_cal/
mag_sphere_fit.c 69 mocs->sample_drop = (uint32_t)floorf(sample_drop);
  /external/skqp/include/private/
SkFloatingPoint.h 38 #define sk_float_floor(x) floorf(x)
  /external/v8/src/wasm/
wasm-external-refs.cc 22 void f32_floor_wrapper(float* param) { *param = floorf(*param); }
  /external/valgrind/memcheck/tests/
vcpu_fnfns.c 27 printf("floorF(%+20.4e) = %+20.4e\n", (double)f, (double)floorf(f));
  /frameworks/base/libs/hwui/tests/common/scenes/
ShapeAnimation.cpp 65 float cellSize = floorf(width / 7 - cellSpace);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
mathinline.h 225 __NTH (floorf (float __x)) function

Completed in 699 milliseconds

1 2 3 4 5 6 7