Lines Matching defs:st

224   st = pointer to a pointer to a structure containing code state data of
232 st = pointer to a pointer to a structure containing code state data of
276 tmp = gmed_n (st->gbuf,5);
279 if (sub (tmp, st->past_gain_code) > 0)
281 tmp = st->past_gain_code;
316 ec_gain_codeState *st, /* i/o : State struct */
334 tmp = gmed_n(st->gbuf, 5);
337 if (sub(tmp, st->past_gain_code, pOverflow) > 0)
339 tmp = st->past_gain_code;
360 st = pointer to a pointer to a structure containing code state data of
368 st = pointer to a pointer to a structure containing code state data of
410 if (sub (*gain_code, st->prev_gc) > 0)
412 *gain_code = st->prev_gc;
415 st->prev_gc = *gain_code;
419 st->past_gain_code = *gain_code;
423 st->gbuf[i - 1] = st->gbuf[i];
425 st->gbuf[4] = *gain_code;
453 ec_gain_codeState *st, /* i/o : State struct */
467 if (sub(*gain_code, st->prev_gc, pOverflow) > 0)
469 *gain_code = st->prev_gc;
472 st->prev_gc = *gain_code;
476 st->past_gain_code = *gain_code;
480 st->gbuf[i - 1] = st->gbuf[i];
482 st->gbuf[4] = *gain_code;
496 st = pointer to a pointer to a structure containing code
545 tmp = gmed_n (st->pbuf, 5);
548 if (sub (tmp, st->past_gain_pit) > 0)
550 tmp = st->past_gain_pit;
578 ec_gain_pitchState *st, /* i/o : state variables */
593 tmp = gmed_n(st->pbuf, 5);
596 if (sub(tmp, st->past_gain_pit, pOverflow) > 0)
598 tmp = st->past_gain_pit;
714 st = pointer to a pointer to a structure containing code
763 if (sub (*gain_pitch, st->prev_gp) > 0)
765 *gain_pitch = st->prev_gp;
768 st->prev_gp = *gain_pitch;
771 st->past_gain_pit = *gain_pitch;
773 if (sub (st->past_gain_pit, 16384) > 0) // if (st->past_gain_pit > 1.0)
775 st->past_gain_pit = 16384;
779 st->pbuf[i - 1] = st->pbuf[i];
781 st->pbuf[4] = st->past_gain_pit;
807 ec_gain_pitchState *st, /* i/o : state variables */
820 if (sub(*gain_pitch, st->prev_gp, pOverflow) > 0)
822 *gain_pitch = st->prev_gp;
825 st->prev_gp = *gain_pitch;
828 st->past_gain_pit = *gain_pitch;
830 if (sub(st->past_gain_pit, 16384, pOverflow) > 0)
831 /* if (st->past_gain_pit > 1.0) */
833 st->past_gain_pit = 16384;
837 st->pbuf[i - 1] = st->pbuf[i];
839 st->pbuf[4] = st->past_gain_pit;