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

Function update_pointers

numpy/linalg/umath_linalg.cpp:758–765  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

756#define END_OUTER_LOOP }
757
758static inline void
759update_pointers(npy_uint8** bases, ptrdiff_t* offsets, size_t count)
760{
761 size_t i;
762 for (i = 0; i < count; ++i) {
763 bases[i] += offsets[i];
764 }
765}
766
767
768/* disable -Wmaybe-uninitialized as there is some code that generate false

Callers 3

eigh_wrapperFunction · 0.85
eig_wrapperFunction · 0.85
svd_wrapperFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected