| 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 | { |
nothing calls this directly
no outgoing calls
no test coverage detected