| 2088 | } |
| 2089 | |
| 2090 | inline void VecInt32StoreX(const vec_int32& v, int32 *ptr) |
| 2091 | { |
| 2092 | #if defined(TERATHON_SSE) |
| 2093 | |
| 2094 | *ptr = _mm_cvtsi128_si32(v); |
| 2095 | |
| 2096 | #elif defined(TERATHON_NEON) |
| 2097 | |
| 2098 | vst1q_lane_s32(ptr, v, 0); |
| 2099 | |
| 2100 | #endif |
| 2101 | } |
| 2102 | |
| 2103 | inline void VecInt32StoreY(const vec_int32& v, int32 *ptr) |
| 2104 | { |
nothing calls this directly
no outgoing calls
no test coverage detected