Home
last modified time | relevance | path

Searched refs:expected (Results 1 – 6 of 6) sorted by relevance

/hal_rpi_pico-3.4.0/test/pico_float_test/
Dpico_double_test.c30 int test__aeabi_cdcmpeq(double a, double b, int expected) { in test__aeabi_cdcmpeq() argument
33 if (expected != cpsr.flags.z) { in test__aeabi_cdcmpeq()
35 a, b, cpsr.flags.z, expected); in test__aeabi_cdcmpeq()
97 int test_dcmple_gt(double a, double b, int expected) { in test_dcmple_gt() argument
98 if ((a <= b) != expected) { in test_dcmple_gt()
100 a, b, a <= b, expected); in test_dcmple_gt()
103 if ((a > b) == expected && !isnan(a) && !isnan(b)) { in test_dcmple_gt()
105 a, b, a > b, !expected); in test_dcmple_gt()
111 int test_dcmplt_ge(double a, double b, int expected) { in test_dcmplt_ge() argument
112 if ((a < b) != expected) { in test_dcmplt_ge()
[all …]
Dpico_float_test.c30 int test__aeabi_cfcmpeq(float a, float b, int expected) { in test__aeabi_cfcmpeq() argument
33 if (expected != cpsr.flags.z) { in test__aeabi_cfcmpeq()
35 a, b, cpsr.flags.z, expected); in test__aeabi_cfcmpeq()
97 int test_fcmple_gt(float a, float b, int expected) { in test_fcmple_gt() argument
98 if ((a <= b) != expected) { in test_fcmple_gt()
100 a, b, a <= b, expected); in test_fcmple_gt()
103 if ((a > b) == expected && !isnanf(a) && !isnanf(b)) { in test_fcmple_gt()
105 a, b, a > b, !expected); in test_fcmple_gt()
111 int test_fcmplt_ge(float a, float b, int expected) { in test_fcmplt_ge() argument
112 if ((a < b) != expected) { in test_fcmplt_ge()
[all …]
/hal_rpi_pico-3.4.0/test/hardware_irq_test/
Dhardware_irq_test.c69 int dma_check(int expected, ...) { in dma_check() argument
70 if (expected == 0) { in dma_check()
79 va_start(args, expected); in dma_check()
80 bool ok = expected == fire_count; in dma_check()
81 for(int i=0;ok && i<expected;i++) { in dma_check()
91 va_start(args, expected); in dma_check()
92 for(int i=0;i<expected;i++) { in dma_check()
/hal_rpi_pico-3.4.0/test/pico_stdlib_test/
Dpico_stdlib_test.c61 int32_t expected = 1475508680; in test_builtin_bitops() local
62 if (x != expected) { in test_builtin_bitops()
63 printf("FAILED (expected count %d\n", (int) expected); in test_builtin_bitops()
/hal_rpi_pico-3.4.0/tools/pioasm/
Dparser.yy174 …| LANG_OPT error { error(@$, "expected format is .lang_opt language option_name…
210 …stringstream msg; location l; l.begin = @2.end; l.end = @3.end; msg << "expected irq, gpio or pin …
/hal_rpi_pico-3.4.0/src/
DCMakeLists.txt33 message(FATAL_ERROR "expected a target, scope and at least one dependency")