Home | History | Annotate | Download | only in src

Lines Matching refs:i0

197      The code length is 40, containing 2 nonzero pulses: i0...i1. All pulses can
198 have two possible amplitudes: +1 or -1. Pulse i0 can have 8 possible positions,
203 first i0 : 0, 5, 10, 15, 20, 25, 30, 35.
205 second i0 : 1, 6, 11, 16, 21, 26, 31, 36.
209 first i0 : 0, 5, 10, 15, 20, 25, 30, 35.
211 second i0 : 2, 7, 12, 17, 22, 27, 32, 37.
215 first i0 : 0, 5, 10, 15, 20, 25, 30, 35.
217 second i0 : 1, 6, 11, 16, 21, 26, 31, 36.
221 first i0 : 0, 5, 10, 15, 20, 25, 30, 35.
223 second i0 : 1, 6, 11, 16, 21, 26, 31, 36.
479 Word16 i0, i1;
502 * i0 loop: try 8 positions. *
505 for (i0 = ipos[0]; i0 < L_CODE; i0 += STEP) {
507 ps0 = dn[i0];
508 alp0 = L_mult(rr[i0][i0], _1_4);
521 * "rr[i0][i2]" is a pointer initialized to "&rr[i0][ipos[2]]" *
528 // alp1 = alp0 + rr[i0][i1] + 1/2*rr[i1][i1];
531 alp1 = L_mac(alp1, rr[i0][i1], _1_2); // idx incr = STEP
555 codvec[0] = i0;
595 register Word16 i0;
639 * i0 loop: try 8 positions. *
642 for (i0 = *ipos; i0 < L_CODE; i0 += STEP)
644 ps0 = *(dn + i0);
648 alp0 = (Word32) rr[i0][i0] << 14;
661 * with fixed increment. For example, "rr[i0][i2]" *
662 * is a pointer initialized to "&rr[i0][ipos[2]]" *
672 /* alp1 = alp0+rr[i0][i1]+1/2*rr[i1][i1]; */
684 alp1 += (Word32) rr[i0][i1] << 15;
719 *(p_codvec++) = i0;