Lines Matching refs:src
67 #define new_1d_copy(t, n, src) \ argument
68 __new_1d_copy(t, n, src)
70 #define new_2d_copy(t, n1, n2, src) \ argument
71 __new_2d_copy(t, n1, n2, src)
117 void *src; in __to_1d_copy() local
119 if ((obj = to_1d_ptr(obj, t, n, &src))) in __to_1d_copy()
120 memcpy(v, src, PyArray_NBYTES((PyArrayObject *)obj)); in __to_1d_copy()
128 void *src; in __to_2d_copy() local
130 if ((obj = to_2d_ptr(obj, t, n1, n2, &src))) in __to_2d_copy()
131 memcpy(v, src, PyArray_NBYTES((PyArrayObject *)obj)); in __to_2d_copy()
170 static PyObject *__new_1d_copy(int t, int n, const void *src) in __new_1d_copy() argument
176 memcpy(dst, src, PyArray_NBYTES((PyArrayObject *)obj)); in __new_1d_copy()
182 static PyObject *__new_2d_copy(int t, int n1, int n2, const void *src) in __new_2d_copy() argument
188 memcpy(dst, src, PyArray_NBYTES((PyArrayObject *)obj)); in __new_2d_copy()