Home | History | Annotate | Download | only in src

Lines Matching defs:step

425 /* Scaled bandfactor and step 1 bit right to avoid overflow
428 FIXP_DBL step = FL2FXCONST_DBL(0.125f); /* Initial increment for factor */
441 while ( step > FL2FXCONST_DBL(0.0f)) {
452 /* Halfen step. Right shift is not done as fract because otherwise the
454 step = (FIXP_DBL)((LONG)step >> 1);
456 bandfactor = bandfactor + step;
460 step = (FIXP_DBL)((LONG)step >> 1);
462 bandfactor = bandfactor - step;
466 step = FL2FXCONST_DBL(0.0f);
647 int step;
661 step = org_length / result_length;
662 org_length = org_length - step;
664 v_index[i] = v_index[i-1] + step;