Home
last modified time | relevance | path

Searched defs:fdim (Results 1 – 13 of 13) sorted by relevance

/external/musl/src/math/
Dfdim.c3 double fdim(double x, double y) in fdim() function
/external/rust/crates/libm/src/math/
Dfdim.rs12 pub fn fdim(x: f64, y: f64) -> f64 { in fdim() function
Dmod.rs125 mod fdim; module
/external/cronet/buildtools/third_party/libc++/trunk/include/
Dmath.h1132 inline _LIBCPP_HIDE_FROM_ABI float fdim(float __x, float __y) _NOEXCEPT {return _… in fdim() function
1135 _LIBCPP_HIDE_FROM_ABI double fdim(double __x, double __y) _NOEXCEPT { in fdim() function
1139 inline _LIBCPP_HIDE_FROM_ABI long double fdim(long double __x, long double __y) _NOEXCEPT {return _… in fdim() function
1149 fdim(_A1 __x, _A2 __y) _NOEXCEPT in fdim() function
/external/libcxx/include/
Dmath.h1173 inline _LIBCPP_INLINE_VISIBILITY float fdim(float __lcpp_x, float __lcpp_y) _NOEXCEPT … in fdim() function
1174 inline _LIBCPP_INLINE_VISIBILITY long double fdim(long double __lcpp_x, long double __lcpp_y) _NOEX… in fdim() function
1184 fdim(_A1 __lcpp_x, _A2 __lcpp_y) _NOEXCEPT in fdim() function
/external/ComputeLibrary/include/half/
Dhalf.hpp1337 static expr fdim(float x, float y) in fdim() function
2300 inline expr fdim(half x, half y) { return functions::fdim(x, y); } in fdim() function
2301 inline expr fdim(half x, expr y) { return functions::fdim(x, y); } in fdim() function
2302 inline expr fdim(expr x, half y) { return functions::fdim(x, y); } in fdim() function
2303 inline expr fdim(expr x, expr y) { return functions::fdim(x, y); } in fdim() function
/external/armnn/third-party/half/
Dhalf.hpp1339 static expr fdim(float x, float y) in fdim() function
2302 inline expr fdim(half x, half y) { return functions::fdim(x, y); } in fdim() function
2303 inline expr fdim(half x, expr y) { return functions::fdim(x, y); } in fdim() function
2304 inline expr fdim(expr x, half y) { return functions::fdim(x, y); } in fdim() function
2305 inline expr fdim(expr x, expr y) { return functions::fdim(x, y); } in fdim() function
/external/musl/include/
Dtgmath.h232 #define fdim(x,y) __tg_real_2(fdim, (x), (y)) macro
/external/libcxx/test/std/depr/depr.c.headers/
Dmath_h.pass.cpp75 Ambiguous fdim(Ambiguous, Ambiguous){ return Ambiguous(); } in fdim() function
/external/cronet/buildtools/third_party/libc++/trunk/test/std/numerics/c.math/
Dcmath.pass.cpp76 Ambiguous fdim(Ambiguous, Ambiguous){ return Ambiguous(); } in fdim() function
/external/libcxx/test/std/numerics/c.math/
Dcmath.pass.cpp77 Ambiguous fdim(Ambiguous, Ambiguous){ return Ambiguous(); } in fdim() function
/external/cronet/buildtools/third_party/libc++/trunk/test/std/depr/depr.c.headers/
Dmath_h.pass.cpp76 Ambiguous fdim(Ambiguous, Ambiguous){ return Ambiguous(); } in fdim() function
/external/clang/lib/Headers/
Dtgmath.h711 #define fdim(__x, __y) __tg_fdim(__tg_promote2((__x), (__y))(__x), \ macro