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