MCPcopy Create free account
hub / github.com/numpy/numpy / npyv_setall_s64

Function npyv_setall_s64

numpy/core/src/common/simd/sse/misc.h:40–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38#endif
39}
40NPY_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

Callers 8

npyv__mullhi_u64Function · 0.70
npyv_divc_s64Function · 0.70
npyv_shr_s64Function · 0.70
npyv_cmpgt_u64Function · 0.70
npyv_load_till_s64Function · 0.70
npyv_abs_f64Function · 0.70
npyv_divc_s64Function · 0.50

Calls 1

npyv__setr_epi64Function · 0.70

Tested by

no test coverage detected