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

Function VecInt32GetZero

TSSimd.h:1959–1970  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1957 }
1958
1959 inline vec_int32 VecInt32GetZero(void)
1960 {
1961 #if defined(TERATHON_SSE)
1962
1963 return (_mm_setzero_si128());
1964
1965 #elif defined(TERATHON_NEON)
1966
1967 return (vmovq_n_s32(0));
1968
1969 #endif
1970 }
1971
1972 inline vec_int8 VecInt8GetInfinity(void)
1973 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected