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

Function VecInt8MergeB

TSSimd.h:2314–2325  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2312 }
2313
2314 inline vec_int8 VecInt8MergeB(const vec_int8& v1, const vec_int8& v2)
2315 {
2316 #if defined(TERATHON_SSE)
2317
2318 return (_mm_unpackhi_epi8(v1, v2));
2319
2320 #elif defined(TERATHON_NEON)
2321
2322 return (vzipq_s8(v1, v2).val[1]);
2323
2324 #endif
2325 }
2326
2327 inline vec_uint8 VecUInt8MergeA(const vec_uint8& v1, const vec_uint8& v2)
2328 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected