Home
last modified time | relevance | path

Searched refs:check_close2 (Results 1 – 2 of 2) sorted by relevance

/hal_rpi_pico-latest/test/pico_float_test/
Dpico_double_test.c328 #define check_close2(func,p0,p1) ({ typeof(p0) r = func(p0,p1), r2 = __CONCAT(__real_, func)(p0,p1)… macro
333 #define check_close2(func,p0,p1) func(p0,p1) macro
363 printf("ATAN2 %10.18g\n", check_close2(atan2, x, 10.0)); in main()
364 printf("ATAN2 %10.18g\n", check_close2(atan2, 10.0, x)); in main()
367 printf("POW %10.18f\n", check_close2(pow, x, x)); in main()
369 printf("LDEXP %10.18f\n", check_close2(ldexp, x, x)); in main()
388 printf("ATAN2 %10.18g\n", check_close2(atan2, x, 10.0)); in main()
389 printf("ATAN2 %10.18g\n", check_close2(atan2, 10.0, x)); in main()
Dpico_float_test.c331 #define check_close2(func,p0,p1) ({ typeof(p0) r = func(p0,p1), r2 = __CONCAT(__real_, func)(p0,p1)… macro
336 #define check_close2(func,p0,p1) func(p0,p1) macro
408 printf("FATAN2 %10.18f\n", check_close2(atan2f, x, 10.f)); in main()
409 printf("FATAN2 %10.18f\n", check_close2(atan2f, 10.f, x)); in main()
412 printf("POWF %10.18f\n", check_close2(powf, x, x)); in main()
417 printf("LDEXPF %10.18f\n", check_close2(ldexpf, x, x)); in main()
418 printf("FMODF %10.18f\n", check_close2(fmodf, x, 3.0f)); in main()