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

1 2 3 4 5 6 7

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_llroundf.c 5 #define roundit roundf
s_lroundf.c 5 #define roundit roundf
s_roundf.c 34 roundf(float x) function
  /device/google/contexthub/firmware/lib/libm/
sf_round.c 15 float roundf(float x) function
17 float roundf(x)
71 return (double) roundf((float) x);
  /external/valgrind/none/tests/mips64/
fpu_arithmetic.c 40 flt_art_op_names[op], roundf(fd_f), fs_f[i], ft_f[i]);
50 flt_art_op_names[op], roundf(fd_f), fs_f[i], ft_f[i]);
68 flt_art_op_names[op], roundf(fd_f), fs_f[i]);
88 flt_art_op_names[op], roundf(fd_f), fs_f[i]);
99 flt_art_op_names[op], roundf(fd_f), fs_f[i]);
111 printf("%s %f %f %f %f\n",flt_art_op_names[op], roundf(fd_f),
121 printf("%s %f %f %f %f\n", flt_art_op_names[op], roundf(fd_f),
131 printf("%s %f %f %f %f\n", flt_art_op_names[op], roundf(fd_f),
141 printf("%s %f %f %f %f\n", flt_art_op_names[op], roundf(fd_f),
  /frameworks/base/libs/hwui/
PropertyValuesHolder.cpp 45 (U8CPU) roundf(a * 255.0f),
46 (U8CPU) roundf(OECF_sRGB(r) * 255.0f),
47 (U8CPU) roundf(OECF_sRGB(g) * 255.0f),
48 (U8CPU) roundf(OECF_sRGB(b) * 255.0f));
  /external/swiftshader/src/OpenGL/libGLESv2/
mathutil.h 90 return static_cast<int>(roundf(x));
  /hardware/invensense/6515/libsensors_iio/software/core/driver/include/
mlmath.h 23 #define roundf(x)(((float )((long long)((x)>0?(x)+.5f:(x)-.5f)))) macro
59 #define roundf(x) (((float )((long long)((x)>0?(x)+.5f:(x)-.5f)))) macro
  /hardware/invensense/65xx/libsensors_iio/software/core/driver/include/
mlmath.h 23 #define roundf(x)(((float )((long long)((x)>0?(x)+.5f:(x)-.5f)))) macro
59 #define roundf(x) (((float )((long long)((x)>0?(x)+.5f:(x)-.5f)))) macro
  /frameworks/native/libs/vr/libdvrcommon/include/private/dvr/
numeric.h 68 return vec2i(roundf(v.x()), roundf(v.y()));
72 return vec2i(roundf(static_cast<float>(v.x()) * scale),
73 roundf(static_cast<float>(v.y()) * scale));
  /external/skia/samplecode/
SampleRegion.cpp 157 dst->fLeft = (int)::roundf(src.fLeft * scale);
158 dst->fTop = (int)::roundf(src.fTop * scale);
159 dst->fRight = (int)::roundf(src.fRight * scale);
160 dst->fBottom = (int)::roundf(src.fBottom * scale);
  /frameworks/base/core/jni/android/graphics/
Region.cpp 166 dst->fLeft = (int)::roundf(src.fLeft * scale);
167 dst->fTop = (int)::roundf(src.fTop * scale);
168 dst->fRight = (int)::roundf(src.fRight * scale);
169 dst->fBottom = (int)::roundf(src.fBottom * scale);
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_validate.c 90 if (roundf(rasterizer->line_width) > draw->pipeline.wide_line_threshold)
173 wide_lines = (roundf(rast->line_width) > draw->pipeline.wide_line_threshold
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_utils.h 214 if(cropF.left - roundf(cropF.left) ||
215 cropF.top - roundf(cropF.top) ||
216 cropF.right - roundf(cropF.right) ||
217 cropF.bottom - roundf(cropF.bottom))
  /hardware/qcom/display/msm8226/libhwcomposer/
hwc_utils.h 239 if(cropF.left - roundf(cropF.left) ||
240 cropF.top - roundf(cropF.top) ||
241 cropF.right - roundf(cropF.right) ||
242 cropF.bottom - roundf(cropF.bottom))
  /hardware/qcom/display/msm8909/libhwcomposer/
hwc_utils.h 261 if(cropF.left - roundf(cropF.left) ||
262 cropF.top - roundf(cropF.top) ||
263 cropF.right - roundf(cropF.right) ||
264 cropF.bottom - roundf(cropF.bottom))
  /hardware/qcom/display/msm8994/libhwcomposer/
hwc_utils.h 289 if(cropF.left - roundf(cropF.left) ||
290 cropF.top - roundf(cropF.top) ||
291 cropF.right - roundf(cropF.right) ||
292 cropF.bottom - roundf(cropF.bottom))
  /external/bison/darwin-lib/
math.h 2078 # undef roundf macro
    [all...]
  /external/bison/lib/
math.in.h 1753 # undef roundf macro
1754 # define roundf macro
1764 _GL_CXXALIASWARN (roundf); variable
1766 # undef roundf macro
    [all...]
  /external/bison/linux-lib/
math.h 2078 # undef roundf macro
    [all...]
  /bionic/tests/
math_test.cpp 980 TEST(math, roundf) {
984 fesetround(FE_TOWARDZERO); // roundf ignores the rounding mode and always rounds away from zero.
985 ASSERT_FLOAT_EQ(1.0f, roundf(0.5f));
986 ASSERT_FLOAT_EQ(-1.0f, roundf(-0.5f));
987 ASSERT_FLOAT_EQ(0.0f, roundf(0.0f));
988 ASSERT_FLOAT_EQ(-0.0f, roundf(-0.0f));
989 ASSERT_TRUE(isnanf(roundf(nanf(""))));
990 ASSERT_FLOAT_EQ(HUGE_VALF, roundf(HUGE_VALF));
    [all...]
  /external/clang/test/CodeGen/
libcall-declarations.c 152 float roundf(float);
292 F(rintl), F(round), F(roundf), F(roundl), F(scalbln),
451 // CHECK-NOERRNO: declare float @roundf(float) [[NUW]]
564 // CHECK-ERRNO: declare float @roundf(float) [[NUW]]
  /bionic/libc/include/
math.h 206 float roundf(float);
  /development/ndk/platforms/android-13/include/
math.h 339 float roundf(float);
  /development/ndk/platforms/android-18/include/
math.h 341 float roundf(float);

Completed in 2733 milliseconds

1 2 3 4 5 6 7