Home | History | Annotate | Download | only in jni

Lines Matching refs:nn

48     int  nn;
49 for (nn = 0; nn < width; nn++) {
53 sum += kernel[mm]*input[nn+offset+mm];
55 output[nn] = (short)((sum + 0x8000) >> 16);
92 int nn;
93 for (nn = 0; nn < FIR_INPUT_SIZE; nn++) {
94 fir_input_0[nn] = (5*nn) & 255;
157 int nn, fails = 0;
158 for (nn = 0; nn < FIR_OUTPUT_SIZE; nn++) {
159 if (fir_output[nn] != fir_output_expected[nn]) {
161 D("neon[%d] = %d expected %d", nn, fir_output[nn], fir_output_expected[nn]);