| 341 | } |
| 342 | |
| 343 | inline bool test_set_u32_4() { |
| 344 | uint32_t output[4] = {0}; |
| 345 | store_u32_4(output, set_u32_4(0x11111111, 0x22222222, 0x33333333, 0x44444444)); |
| 346 | uint32_t expected[4] = {0x11111111, 0x22222222, 0x33333333, 0x44444444}; |
| 347 | return compare_u32(expected, output, 4); |
| 348 | } |
| 349 | |
| 350 | inline bool test_set1_f32_4() { |
| 351 | float output[4] = {0.0f}; |
nothing calls this directly
no test coverage detected