Home | History | Annotate | Download | only in internal

Lines Matching refs:CopyArray

1016 // CopyArray() copies a k-dimensional native array using the elements'
1018 // CopyArray() degenerates into copying a single value.
1021 void CopyArray(const T* from, size_t size, U* to);
1025 inline void CopyArray(const T& from, U* to) { *to = from; }
1029 inline void CopyArray(const T(&from)[N], U(*to)[N]) {
1030 internal::CopyArray(from, N, *to);
1034 // the previous CopyArray() function, arrays with different sizes
1037 void CopyArray(const T* from, size_t size, U* to) {
1039 internal::CopyArray(from[i], to + i);
1103 CopyArray(array, a_size, copy);