/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/ |
H A D | math_remquo_test.cpp | 17 * @tc.desc: Obtain test data in sequence and check if it is within the expected error range of the remquo interface. 25 bool testResult = DoubleUlpCmp(g_remquoData[i].expected1, remquo(g_remquoData[i].input1, in HWTEST_F() 40 double result = remquo(15.0, 6.0, "ient); in HWTEST_F() 53 EXPECT_TRUE(isnan(remquo(nan(""), 15.0, "ient))); in HWTEST_F() 54 EXPECT_TRUE(isnan(remquo(11.0, nan(""), "ient))); in HWTEST_F() 65 EXPECT_TRUE(isnan(remquo(HUGE_VAL, 15.0, "ient))); in HWTEST_F() 66 EXPECT_TRUE(isnan(remquo(-HUGE_VAL, 11.0, "ient))); in HWTEST_F() 77 EXPECT_TRUE(isnan(remquo(14.0, 0.0, "ient))); in HWTEST_F()
|
/third_party/musl/src/math/i386/ |
H A D | remquo.s | 21 .global remquo 22 .type remquo,@function 23 remquo: label
|
/third_party/musl/libc-test/src/api/ |
H A D | tgmath.c | 246 #ifdef remquo in f() 247 {double r = remquo(x,y,&i);} in f() 249 #error no remquo(x,y,z) in f()
|
H A D | math.c | 194 {double(*p)(double,double,int*) = remquo;} in f()
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
H A D | remainder.c | 6 return remquo(x, y, &q); in remainder()
|
H A D | remquo.c | 4 double remquo(double x, double y, int *quo) in remquo() function
|
H A D | remquol.c | 6 return remquo(x, y, quo); in remquol()
|
/third_party/musl/src/math/ |
H A D | remainder.c | 6 return remquo(x, y, &q); in remainder()
|
H A D | remquo.c | 4 double remquo(double x, double y, int *quo) in remquo() function
|
H A D | remquol.c | 6 return remquo(x, y, quo); in remquol()
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | tgmath.h | 120 remquo(x, y, z) )) 194 #undef remquo macro 257 #define remquo(x,y,z) __tg_real_remquo((x), (y), (z)) macro
|
H A D | math.h | 315 double remquo(double, double, int *);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | tgmath.h | 120 remquo(x, y, z) )) 194 #undef remquo macro 257 #define remquo(x,y,z) __tg_real_remquo((x), (y), (z)) macro
|
H A D | math.h | 315 double remquo(double, double, int *);
|
/third_party/musl/include/ |
H A D | tgmath.h | 120 remquo(x, y, z) )) 194 #undef remquo macro 257 #define remquo(x,y,z) __tg_real_remquo((x), (y), (z)) macro
|
H A D | math.h | 315 double remquo(double, double, int *);
|
/third_party/musl/libc-test/src/math/ |
H A D | remquo.c | 6 #include "sanity/remquo.h" 7 #include "special/remquo.h" 26 y = remquo(p->x, p->x2, &yi); in main() 30 printf("%s:%d: bad fp exception: %s remquo(%a,%a)=%a,%lld, want %s", in main() 39 printf("%s:%d: %s remquo(%a,%a) want %a,%lld got %a,%d ulperr %.3f = %a + %a\n", in main()
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | math.h | 315 double remquo(double, double, int *);
|
/third_party/skia/third_party/externals/spirv-tools/test/ |
H A D | ext_inst.opencl_test.cpp | 152 CASE3(Remquo, remquo),
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/ |
H A D | ext_inst.opencl_test.cpp | 152 CASE3(Remquo, remquo),
|
/third_party/spirv-tools/test/ |
H A D | ext_inst.opencl_test.cpp | 152 CASE3(Remquo, remquo),
|
/third_party/musl/libc-test/src/math/gen/ |
H A D | mplibm.c | 419 mp_ff_fi(remquo)
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 33717 extern double remquo (double __x, double __y, int *__quo) throw (); extern double __remquo (double __x, double __y, int *__quo) throw (); 35325 using ::remquo; 35860 remquo(float __x, float __y, int* __pquo) 35864 remquo(long double __x, long double __y, int* __pquo) 35871 remquo(_Tp __x, _Up __y, int* __pquo) 35874 return remquo(__type(__x), __type(__y), __pquo); [all...] |