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

1 2

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_truncf.c 17 * truncf(x)
22 * Inexact flag raised if x not equal to truncf(x).
31 truncf(float x) function
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 644 /// float truncf(float x);
645 truncf, enumerator in enum:llvm::LibFunc::Func
742 case LibFunc::trunc: case LibFunc::truncf: case LibFunc::truncl:
  /bionic/tests/
math_test.cpp 1006 TEST(math, truncf) {
1010 fesetround(FE_UPWARD); // truncf ignores the rounding mode and always rounds toward zero.
1011 ASSERT_FLOAT_EQ(1.0f, truncf(1.5f));
1012 ASSERT_FLOAT_EQ(-1.0f, truncf(-1.5f));
1013 ASSERT_FLOAT_EQ(0.0f, truncf(0.0f));
1014 ASSERT_FLOAT_EQ(-0.0f, truncf(-0.0f));
1015 ASSERT_TRUE(isnan(truncf(nanf(""))));
1016 ASSERT_FLOAT_EQ(HUGE_VALF, truncf(HUGE_VALF));
    [all...]
  /external/bison/darwin-lib/
math.h 2282 # undef truncf macro
    [all...]
  /external/bison/lib/
math.in.h 1958 # define truncf macro
1968 _GL_CXXALIASWARN (truncf); variable
1970 # undef truncf macro
    [all...]
  /external/bison/linux-lib/
math.h 2282 # undef truncf macro
    [all...]
  /external/clang/test/CodeGen/
libcall-declarations.c 179 float truncf(float);
297 F(tgamma), F(tgammaf), F(tgammal), F(trunc), F(truncf),
478 // CHECK-NOERRNO: declare float @truncf(float) [[NUW]]
567 // CHECK-ERRNO: declare float @truncf(float) [[NUW]]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_test_arit.c 239 {"trunc", &lp_build_trunc, &truncf, round_values, Elements(round_values), 24.0 },
  /external/llvm/include/llvm/Transforms/Utils/
VectorUtils.h 169 case LibFunc::truncf:
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_arit.c 239 {"trunc", &lp_build_trunc, &truncf, round_values, Elements(round_values), 24.0 },
  /bionic/libm/include/
math.h 362 float truncf(float);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
imports.h 149 static inline float truncf(float x) { return x < 0.0f ? ceilf(x) : floorf(x); } function
  /external/mesa3d/src/mesa/main/
imports.h 148 static inline float truncf(float x) { return x < 0.0f ? ceilf(x) : floorf(x); } function
  /external/ltrace/etc/
libm.so.conf 137 float truncf(float);
  /development/ndk/platforms/android-13/include/
math.h 367 float truncf(float) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-18/include/
math.h 369 float truncf(float) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-3/include/
math.h 364 float truncf(float) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-9/include/
math.h 364 float truncf(float) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-L/include/
math.h 362 float truncf(float) __NDK_FPABI_MATH__;
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 333 case LibFunc::truncf:
  /external/llvm/lib/Target/
TargetLibraryInfo.cpp 330 "truncf",
496 TLI.setUnavailable(LibFunc::truncf);
  /cts/tests/tests/renderscript/libcoremathtestcpp/
CoreMathTestJni.cpp 408 return truncf(x);
  /external/libcxx/test/depr/depr.c.headers/
math_h.disabled.cpp 605 static_assert((std::is_same<decltype(truncf(0)), float>::value), "");
  /external/clang/lib/Headers/
tgmath.h 1212 __tg_trunc(float __x) {return truncf(__x);}
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_constant_expression.cpp 275 data.f[c] = truncf(op[0]->value.f[c]);
    [all...]

Completed in 369 milliseconds

1 2