void vsip_vcopy_f_f(const vsip_vview_f* a, const vsip_vview_f* r); void vsip_vcopy_d_d(const vsip_vview_d* a, const vsip_vview_d* r); void vsip_vcopy_i_i(const vsip_vview_i* a, const vsip_vview_i* r); void vsip_vcopy_i_f(const vsip_vview_i* a, const vsip_vview_f* r); void vsip_vcopy_i_d(const vsip_vview_i* a, const vsip_vview_d* r); void vsip_vcopy_f_i(const vsip_vview_f* a, const vsip_vview_i* r); void vsip_vcopy_d_i(const vsip_vview_d* a, const vsip_vview_i* r); void vsip_cvcopy_f_f(const vsip_cvview_f* a, const vsip_cvview_f* r); void vsip_cvcopy_d_d(const vsip_cvview_d* a, const vsip_cvview_d* r);
These functions copy the contents of one vector view to another. The source and destination vector views can be of different types (float or integer), and the functions handle the necessary type conversions.
const vsip_dvview_p* a: Pointer to the source vector view.
const vsip_dvview_p* r: Pointer to the destination vector view.
vsip_vcopy_f_f: Copies from a float vector view to another float vector view.
vsip_vcopy_d_d: Copies from a double vector view to another double vector view.
vsip_vcopy_i_i: Copies from an integer vector view to another integer vector view.
vsip_vcopy_i_f: Copies from an integer vector view to a float vector view.
vsip_vcopy_i_d: Copies from an integer vector view to a double vector view.
vsip_vcopy_f_i: Copies from a float vector view to an integer vector view.
vsip_vcopy_d_i: Copies from a double vector view to an integer vector view.
vsip_cvcopy_f_f: Copies from a complex float vector view to another complex float vector view.
vsip_cvcopy_d_d: Copies from a complex double vector view to another complex double vector view.
vsip_vview_f *src_float_view; vsip_vview_f *dst_float_view; // Assuming all views have been properly initialized // Copy from float vector view to float vector view vsip_vcopy_f_f(src_float_view, dst_float_view);