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