| 13485 | } |
| 13486 | |
| 13487 | result_t SSE2NEONTestImpl::loadTestIntPointers(uint32_t i) |
| 13488 | { |
| 13489 | result_t ret = |
| 13490 | do_mm_store_ps(mTestIntPointer1, mTestInts[i], mTestInts[i + 1], |
| 13491 | mTestInts[i + 2], mTestInts[i + 3]); |
| 13492 | if (ret == TEST_SUCCESS) { |
| 13493 | ret = |
| 13494 | do_mm_store_ps(mTestIntPointer2, mTestInts[i + 4], mTestInts[i + 5], |
| 13495 | mTestInts[i + 6], mTestInts[i + 7]); |
| 13496 | } |
| 13497 | |
| 13498 | return ret; |
| 13499 | } |
| 13500 | |
| 13501 | result_t SSE2NEONTestImpl::runSingleTest(InstructionTest test, uint32_t i) |
| 13502 | { |
nothing calls this directly
no test coverage detected