/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/ |
H A D | math_remquo_test.cpp | 82 * @tc.desc: Obtain test data in sequence and check if it is within the expected error range of the remquof interface. 90 bool testResult1 = FloatUlpCmp(g_remquofData[i].expected1, remquof(g_remquofData[i].input1, in HWTEST_F() 106 double result = remquof(15.0f, 6.0f, "ient); in HWTEST_F() 119 EXPECT_TRUE(isnan(remquof(nanf(""), 15.0f, "ient))); in HWTEST_F() 120 EXPECT_TRUE(isnan(remquof(11.0f, nanf(""), "ient))); in HWTEST_F() 131 EXPECT_TRUE(isnan(remquof(HUGE_VAL, 15.0f, "ient))); in HWTEST_F() 132 EXPECT_TRUE(isnan(remquof(-HUGE_VAL, 11.0f, "ient))); in HWTEST_F() 143 EXPECT_TRUE(isnan(remquof(14.0f, 0.0f, "ient))); in HWTEST_F()
|
/third_party/musl/src/math/i386/ |
H A D | remquo.s | 1 .global remquof 2 .type remquof,@function 3 remquof: label
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
H A D | remainderf.c | 6 return remquof(x, y, &q); in remainderf()
|
H A D | remquof.c | 4 float remquof(float x, float y, int *quo) in remquof() function
|
/third_party/musl/src/math/ |
H A D | remainderf.c | 6 return remquof(x, y, &q); in remainderf()
|
H A D | remquof.c | 4 float remquof(float x, float y, int *quo) in remquof() function
|
/third_party/musl/libc-test/src/math/ |
H A D | remquof.c | 6 #include "sanity/remquof.h" 7 #include "special/remquof.h" 26 y = remquof(p->x, p->x2, &yi); in main() 30 printf("%s:%d: bad fp exception: %s remquof(%a,%a)=%a,%lld, want %s", in main() 39 printf("%s:%d: %s remquof(%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 | 316 float remquof(float, float, int *);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | math.h | 316 float remquof(float, float, int *);
|
H A D | tgmath.h | 118 __FLT(x) && __FLT(y) ? remquof(x, y, z) : \
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | math.h | 316 float remquof(float, float, int *);
|
H A D | tgmath.h | 118 __FLT(x) && __FLT(y) ? remquof(x, y, z) : \
|
/third_party/musl/include/ |
H A D | math.h | 316 float remquof(float, float, int *);
|
H A D | tgmath.h | 118 __FLT(x) && __FLT(y) ? remquof(x, y, z) : \
|
/third_party/musl/libc-test/src/api/ |
H A D | math.c | 195 {float(*p)(float,float,int*) = remquof;} in f()
|
/third_party/musl/libc-test/src/math/gen/ |
H A D | mplibm.c | 420 mp_ff_fi(remquof)
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 34030 extern float remquof (float __x, float __y, int *__quo) throw (); extern float __remquof (float __x, float __y, int *__quo) throw (); 35326 using ::remquof; [all...] |