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

Function VecUInt8UnpackB

TSSimd.h:2236–2247  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2234 }
2235
2236 inline vec_uint16 VecUInt8UnpackB(const vec_uint8& v)
2237 {
2238 #if defined(TERATHON_SSE)
2239
2240 return (_mm_unpackhi_epi8(v, _mm_setzero_si128()));
2241
2242 #elif defined(TERATHON_NEON)
2243
2244 return (vmovl_u8(vget_high_u8(v)));
2245
2246 #endif
2247 }
2248
2249 inline vec_int32 VecInt16UnpackA(const vec_int16& v)
2250 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected