void vsip_vcopy_f_f(const vsip_vview_f* a, const vsip_vview_f* 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_f_i(const vsip_vview_f* a, const vsip_vview_i* r); void vsip_cvcopy_f_f(const vsip_cvview_f* a, const vsip_cvview_f* 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_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_f_i: Copies from a float 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_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);