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

Function VecInt16GetZero

TSSimd.h:1946–1957  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1944 }
1945
1946 inline vec_int16 VecInt16GetZero(void)
1947 {
1948 #if defined(TERATHON_SSE)
1949
1950 return (_mm_setzero_si128());
1951
1952 #elif defined(TERATHON_NEON)
1953
1954 return (vmovq_n_s16(0));
1955
1956 #endif
1957 }
1958
1959 inline vec_int32 VecInt32GetZero(void)
1960 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected