Home | History | Annotate | Download | only in src

Lines Matching defs:hi

476     Word16 hi, lo;
477 Word16 Kh, Kl; // reflexion coefficient; hi and lo
478 Word16 alp_h, alp_l, alp_exp; // Prediction gain; hi lo and exponent
503 L_Extract (t0, &hi, &lo); // DPF format
504 t0 = Mpy_32 (Rh[0], Rl[0], hi, lo); // Alpha in
579 L_Extract (t0, &hi, &lo); // DPF format
580 t0 = Mpy_32 (alp_h, alp_l, hi, lo);
643 Word16 hi;
645 Word16 Kh; /* reflexion coefficient; hi and lo */
647 Word16 alp_h; /* Prediction gain; hi lo and exponent*/
697 hi = (Word16)(t0 >> 16);
698 lo = (Word16)((t0 >> 1) - ((Word32)(hi) << 15));
700 t0 = Mpy_32(*Rh, *Rl, hi, lo, pOverflow); /* Alpha in */
791 hi = (Word16)(t0 >> 16);
792 lo = (Word16)((t0 >> 1) - ((Word32)(hi) << 15));
795 t0 += (((Word32)alp_l * hi) >> 15);
796 t0 += ((Word32)alp_h * hi);