Home | History | Annotate | Download | only in src

Lines Matching refs:n_1

296   SHORT j, n_1;
300 n_1 = N - 1;
301 j = offset + (1 << n_1);
304 if (((index >> ((4 * n_1) + 1)) & 1) == 0) {
305 D_ACELP_decode_4p_4N1(index, n_1, offset, pos);
307 D_ACELP_decode_4p_4N1(index, n_1, j, pos);
311 D_ACELP_decode_1p_N1((index >> ((3 * n_1) + 1)), n_1, offset, pos);
312 D_ACELP_decode_3p_3N1(index, n_1, j, pos + 1);
315 D_ACELP_decode_2p_2N1((index >> ((2 * n_1) + 1)), n_1, offset, pos);
316 D_ACELP_decode_2p_2N1(index, n_1, j, pos + 2);
319 D_ACELP_decode_3p_3N1((index >> (n_1 + 1)), n_1, offset, pos);
320 D_ACELP_decode_1p_N1(index, n_1, j, pos + 3);