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

Function VecInt8GetZero

TSSimd.h:1933–1944  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1931 }
1932
1933 inline vec_int8 VecInt8GetZero(void)
1934 {
1935 #if defined(TERATHON_SSE)
1936
1937 return (_mm_setzero_si128());
1938
1939 #elif defined(TERATHON_NEON)
1940
1941 return (vmovq_n_s8(0));
1942
1943 #endif
1944 }
1945
1946 inline vec_int16 VecInt16GetZero(void)
1947 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected