Searched refs:test_dcmplt_ge (Results 1 – 1 of 1) sorted by relevance
/hal_rpi_pico-latest/test/pico_float_test/ |
D | pico_double_test.c | 116 int test_dcmplt_ge(double a, double b, int expected) { in test_dcmplt_ge() function 235 if (test_dcmplt_ge(1.0, 1.0, 0)) in test_cmplt_ge() 237 if (test_dcmplt_ge(1234.567, 765.4321, 0)) in test_cmplt_ge() 239 if (test_dcmplt_ge(765.4321, 1234.567, 1)) in test_cmplt_ge() 241 if (test_dcmplt_ge(-123.0, -678.0, 0)) in test_cmplt_ge() 243 if (test_dcmplt_ge(-678.0, -123.0, 1)) in test_cmplt_ge() 245 if (test_dcmplt_ge(-123.0, 678.0, 1)) in test_cmplt_ge() 247 if (test_dcmplt_ge(678.0, -123.0, 0)) in test_cmplt_ge() 249 if (test_dcmplt_ge(0.0, -0.0, 0)) in test_cmplt_ge() 251 if (test_dcmplt_ge(-0.0, 0.0, 0)) in test_cmplt_ge() [all …]
|