Home | History | Annotate | Download | only in fec

Lines Matching refs:in

4  * 8 words; they differ only in their alignment requirements (8 bytes
13 long long sumsq_sse2(signed short *in,int cnt){
17 while(((int)in & 15) != 0 && cnt != 0){
18 sum += (long)in[0] * in[0];
19 in++;
22 sum += sumsq_sse2_assist(in,cnt);
23 in += cnt & ~7;
28 sum += (long)in[0] * in[0];
29 in++;