| 38 | #endif |
| 39 | } |
| 40 | NPY_FINLINE npyv_s64 npyv_setall_s64(npy_int64 a) |
| 41 | { |
| 42 | #if defined(_MSC_VER) && defined(_M_IX86) |
| 43 | return npyv__setr_epi64(a, a); |
| 44 | #else |
| 45 | return _mm_set1_epi64x((npy_int64)a); |
| 46 | #endif |
| 47 | } |
| 48 | |
| 49 | /** |
| 50 | * vector with specific values set to each lane and |
no test coverage detected