Home | History | Annotate | Download | only in src

Lines Matching refs:step

432 /* Scaled bandfactor and step 1 bit right to avoid overflow
435 FIXP_DBL step = FL2FXCONST_DBL(0.125f); /* Initial increment for factor */
448 while ( step > FL2FXCONST_DBL(0.0f)) {
459 /* Halfen step. Right shift is not done as fract because otherwise the
461 step = (FIXP_DBL)((LONG)step >> 1);
463 bandfactor = bandfactor + step;
467 step = (FIXP_DBL)((LONG)step >> 1);
469 bandfactor = bandfactor - step;
473 step = FL2FXCONST_DBL(0.0f);
654 int step;
668 step = org_length / result_length;
669 org_length = org_length - step;
671 v_index[i] = v_index[i-1] + step;