Home
last modified time | relevance | path

Searched defs:remquo (Results 1 – 15 of 15) sorted by relevance

/external/musl/src/math/i386/
Dremquo.s21 .global remquo symbol
23 remquo: label
/external/musl/src/math/
Dremquo.c4 double remquo(double x, double y, int *quo) in remquo() function
/external/rust/crates/libm/src/math/
Dremquo.rs2 pub fn remquo(mut x: f64, mut y: f64) -> (f64, i32) { in remquo() function
Dmod.rs171 mod remquo; module
/external/cronet/buildtools/third_party/libc++/trunk/include/
Dmath.h1544 inline _LIBCPP_HIDE_FROM_ABI float remquo(float __x, float __y, int* __z) _NOEXCEPT … in remquo() function
1547 _LIBCPP_HIDE_FROM_ABI double remquo(double __x, double __y, int* __z) _NOEXCEPT { in remquo() function
1551 inline _LIBCPP_HIDE_FROM_ABI long double remquo(long double __x, long double __y, int* __z) _NOEXCE… in remquo() function
1561 remquo(_A1 __x, _A2 __y, int* __z) _NOEXCEPT in remquo() function
/external/libcxx/include/
Dmath.h1434 inline _LIBCPP_INLINE_VISIBILITY float remquo(float __lcpp_x, float __lcpp_y, int* __lcpp_z) … in remquo() function
1435 inline _LIBCPP_INLINE_VISIBILITY long double remquo(long double __lcpp_x, long double __lcpp_y, int… in remquo() function
1445 remquo(_A1 __lcpp_x, _A2 __lcpp_y, int* __lcpp_z) _NOEXCEPT in remquo() function
/external/ComputeLibrary/include/half/
Dhalf.hpp1291 static expr remquo(float x, float y, int *quo) in remquo() function
2255 inline expr remquo(half x, half y, int *quo) { return functions::remquo(x, y, quo); } in remquo() function
2256 inline expr remquo(half x, expr y, int *quo) { return functions::remquo(x, y, quo); } in remquo() function
2257 inline expr remquo(expr x, half y, int *quo) { return functions::remquo(x, y, quo); } in remquo() function
2258 inline expr remquo(expr x, expr y, int *quo) { return functions::remquo(x, y, quo); } in remquo() function
/external/armnn/third-party/half/
Dhalf.hpp1293 static expr remquo(float x, float y, int *quo) in remquo() function
2257 inline expr remquo(half x, half y, int *quo) { return functions::remquo(x, y, quo); } in remquo() function
2258 inline expr remquo(half x, expr y, int *quo) { return functions::remquo(x, y, quo); } in remquo() function
2259 inline expr remquo(expr x, half y, int *quo) { return functions::remquo(x, y, quo); } in remquo() function
2260 inline expr remquo(expr x, expr y, int *quo) { return functions::remquo(x, y, quo); } in remquo() function
/external/musl/include/
Dtgmath.h257 #define remquo(x,y,z) __tg_real_remquo((x), (y), (z)) macro
/external/libcxx/test/std/depr/depr.c.headers/
Dmath_h.pass.cpp93 Ambiguous remquo(Ambiguous, Ambiguous, int*){ return Ambiguous(); } in remquo() function
/external/cronet/buildtools/third_party/libc++/trunk/test/std/numerics/c.math/
Dcmath.pass.cpp96 Ambiguous remquo(Ambiguous, Ambiguous, int*){ return Ambiguous(); } in remquo() function
/external/libcxx/test/std/numerics/c.math/
Dcmath.pass.cpp96 Ambiguous remquo(Ambiguous, Ambiguous, int*){ return Ambiguous(); } in remquo() function
/external/cronet/buildtools/third_party/libc++/trunk/test/std/depr/depr.c.headers/
Dmath_h.pass.cpp94 Ambiguous remquo(Ambiguous, Ambiguous, int*){ return Ambiguous(); } in remquo() function
/external/clang/lib/Headers/
Dtgmath.h1118 #define remquo(__x, __y, __z) \ macro
/external/compiler-rt/lib/msan/tests/
Dmsan_test.cc1769 TEST(MemorySanitizer, remquo) { in TEST() argument