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

Function npyv_loadn_s64

numpy/core/src/common/simd/neon/memory.h:76–81  ·  view source on GitHub ↗

/ 64

Source from the content-addressed store, hash-verified

74}
75//// 64
76NPY_FINLINE npyv_s64 npyv_loadn_s64(const npy_int64 *ptr, npy_intp stride)
77{
78 return vcombine_s64(
79 vld1_s64((const int64_t*)ptr), vld1_s64((const int64_t*)ptr + stride)
80 );
81}
82NPY_FINLINE npyv_u64 npyv_loadn_u64(const npy_uint64 *ptr, npy_intp stride)
83{
84 return npyv_reinterpret_u64_s64(

Callers 3

npyv_loadn_u64Function · 0.70
npyv_loadn_f64Function · 0.70
npyv_loadn_till_s64Function · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected