Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30024
Modified Files: Tag: devel_0_37 g_io.c Log Message: renaming simd functions
Index: g_io.c =================================================================== RCS file: /cvsroot/pure-data/pd/src/g_io.c,v retrieving revision 1.1.1.1.16.6 retrieving revision 1.1.1.1.16.7 diff -C2 -d -r1.1.1.1.16.6 -r1.1.1.1.16.7 *** g_io.c 7 Oct 2004 17:56:38 -0000 1.1.1.1.16.6 --- g_io.c 19 Oct 2004 21:35:40 -0000 1.1.1.1.16.7 *************** *** 139,144 **** for (; n; n -= 8, in += 8, out += 8) { ! out[0] = in[0]; out[1] = in[1]; out[2] = in[2]; out[3] = in[3]; ! out[4] = in[4]; out[5] = in[5]; out[6] = in[6]; out[7] = in[7]; }
--- 139,144 ---- for (; n; n -= 8, in += 8, out += 8) { ! out[0] = in[0]; out[1] = in[1]; out[2] = in[2]; out[3] = in[3]; ! out[4] = in[4]; out[5] = in[5]; out[6] = in[6]; out[7] = in[7]; }
*************** *** 153,157 **** t_vinlet *x = (t_vinlet *)(w[1]); t_float *in = x->x_read; ! copyvec((t_float *)w[2],in,w[3]); if (in == x->x_endbuf) in = x->x_buf; x->x_read = in; --- 153,157 ---- t_vinlet *x = (t_vinlet *)(w[1]); t_float *in = x->x_read; ! copyvec_simd((t_float *)w[2],in,w[3]); if (in == x->x_endbuf) in = x->x_buf; x->x_read = in;