| 334 | } |
| 335 | |
| 336 | inline bool test_set1_u32_4_zero() { |
| 337 | uint32_t output[4] = {1,1,1,1}; |
| 338 | store_u32_4(output, set1_u32_4(0)); |
| 339 | uint32_t expected[4] = {0, 0, 0, 0}; |
| 340 | return compare_u32(expected, output, 4); |
| 341 | } |
| 342 | |
| 343 | inline bool test_set_u32_4() { |
| 344 | uint32_t output[4] = {0}; |
nothing calls this directly
no test coverage detected