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

1 2 3 4 5 6 7

  /bionic/libm/x86_64/
truncf.S 33 ENTRY(truncf) function
36 END(truncf)
  /bionic/libm/arm64/
trunc.S 24 ENTRY(truncf) function
27 END(truncf)
  /bionic/libm/x86/
truncf.S 33 ENTRY(truncf) function
39 END(truncf)
  /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/skia/include/private/
SkFloatingPoint.h 43 #define sk_float_trunc(x) truncf(x)
  /external/v8/src/wasm/
wasm-external-refs.cc 20 void f32_trunc_wrapper(float* param) { *param = truncf(*param); }
  /bionic/tests/
math_test.cpp 1019 TEST(math, truncf) {
1023 fesetround(FE_UPWARD); // truncf ignores the rounding mode and always rounds toward zero.
1024 ASSERT_FLOAT_EQ(1.0f, truncf(1.5f));
1025 ASSERT_FLOAT_EQ(-1.0f, truncf(-1.5f));
1026 ASSERT_FLOAT_EQ(0.0f, truncf(0.0f));
1027 ASSERT_FLOAT_EQ(-0.0f, truncf(-0.0f));
1028 ASSERT_TRUE(isnan(truncf(nanf(""))));
1029 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]]
  /bionic/libc/include/
math.h 233 float truncf(float);
  /development/ndk/platforms/android-13/include/
math.h 365 float truncf(float);
  /development/ndk/platforms/android-18/include/
math.h 367 float truncf(float);
  /development/ndk/platforms/android-9/include/
math.h 362 float truncf(float);
  /external/llvm/include/llvm/Analysis/
TargetLibraryInfo.h 260 case LibFunc::trunc: case LibFunc::truncf: case LibFunc::truncl:
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_arit.c 239 {"trunc", &lp_build_trunc, &truncf, round_values, Elements(round_values), 24.0 },
  /frameworks/rs/cpu_ref/
rsCpuRuntimeMath.cpp 152 EXPORT_F32_FN_F32(truncf)
  /development/ndk/platforms/android-21/include/
math.h 362 float truncf(float);
  /external/mesa3d/src/mesa/main/
imports.h 148 static inline float truncf(float x) { return x < 0.0f ? ceilf(x) : floorf(x); } function
  /prebuilts/clang/host/darwin-x86/clang-3688880/lib64/clang/4.0/include/
__clang_cuda_cmath.h 465 using ::truncf;
  /prebuilts/clang/host/darwin-x86/clang-3859424/lib64/clang/4.0/include/
__clang_cuda_cmath.h 465 using ::truncf;
  /prebuilts/clang/host/linux-x86/clang-3688880/lib64/clang/4.0/include/
__clang_cuda_cmath.h 465 using ::truncf;
  /prebuilts/clang/host/linux-x86/clang-3859424/lib64/clang/4.0/include/
__clang_cuda_cmath.h 465 using ::truncf;
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 366 case LibFunc::truncf:

Completed in 377 milliseconds

1 2 3 4 5 6 7