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

Function VecUInt8LoadUnaligned

TSSimd.h:2025–2036  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2023 }
2024
2025 inline vec_uint8 VecUInt8LoadUnaligned(const uint8 *ptr)
2026 {
2027 #if defined(TERATHON_SSE)
2028
2029 return (_mm_loadu_si128(reinterpret_cast<const __m128i *>(ptr)));
2030
2031 #elif defined(TERATHON_NEON)
2032
2033 return (vld1q_u8(ptr));
2034
2035 #endif
2036 }
2037
2038 inline vec_int16 VecInt16Load(const int16 *ptr)
2039 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected