Home | History | Annotate | Download | only in jni

Lines Matching defs:nn

27    int nn, offset = -kernelSize/2;
29 for (nn = 0; nn < width; nn++)
36 int16x4_t input_vec = vld1_s16(input + (nn+offset+mm*4));
48 sum += kernel[mm] * input[nn+offset+mm];
51 output[nn] = (short)((sum + 0x8000) >> 16);
54 int nn, offset = -kernelSize/2;
55 for (nn = 0; nn < width; nn++) {
59 sum += kernel[mm]*input[nn+offset+mm];