Home | History | Annotate | Download | only in fec

Lines Matching refs:in

6  * 8 words; they differ only in their alignment requirements (8 bytes
15 long long sumsq_mmx(signed short *in,int cnt){
19 while(((int)in & 7) != 0 && cnt != 0){
20 sum += (long)in[0] * in[0];
21 in++;
24 sum += sumsq_mmx_assist(in,cnt);
25 in += cnt & ~7;
30 sum += (long)in[0] * in[0];
31 in++;