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

Function VecInt8UnpackA

TSSimd.h:2197–2208  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2195 }
2196
2197 inline vec_int16 VecInt8UnpackA(const vec_int8& v)
2198 {
2199 #if defined(TERATHON_SSE)
2200
2201 return (_mm_unpacklo_epi8(v, _mm_cmplt_epi8(v, _mm_setzero_si128())));
2202
2203 #elif defined(TERATHON_NEON)
2204
2205 return (vmovl_s8(vget_low_s8(v)));
2206
2207 #endif
2208 }
2209
2210 inline vec_int16 VecInt8UnpackB(const vec_int8& v)
2211 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected