MCPcopy Create free account
hub / github.com/EricLengyel/Terathon-Math-Library / VecInt32StoreX

Function VecInt32StoreX

TSSimd.h:2090–2101  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected