Home | History | Annotate | Download | only in src

Lines Matching refs:maxVal

352   SHORT temp, maxVal = 0;
356 maxVal |= (temp^(temp>>(SHORT_BITS-1)));
359 return fixmax_I((INT)0,(INT)(fixnormz_D((INT)maxVal) - (INT)1 - (INT)(DFRACT_BITS - SHORT_BITS)));
379 INT_PCM temp, maxVal = 0;
383 maxVal |= (temp^(temp>>((sizeof(INT_PCM)*8)-1)));
385 return fixmax_I((INT)0,(INT)(fixnormz_D((INT)maxVal) - (INT)1 - (INT)(DFRACT_BITS - SAMPLE_BITS)));
405 SHORT temp, maxVal = 0;
409 maxVal |= (temp^(temp>>(SHORT_BITS-1)));
412 return fixmax_I((INT)0,(INT)(fixnormz_D((INT)maxVal) - (INT)1 - (INT)(DFRACT_BITS - SHORT_BITS)));
433 FIXP_DBL temp, maxVal = (FIXP_DBL)0;
437 maxVal |= (FIXP_DBL)((LONG)temp^(LONG)(temp>>(DFRACT_BITS-1)));
440 return fixmax_I((INT)0,(INT)(fixnormz_D(maxVal) - 1));
451 SHORT temp, maxVal = (FIXP_SGL)0;
455 maxVal |= (temp^(temp>>(FRACT_BITS-1)));
458 return fixmax_I((INT)0,(INT)(fixnormz_D(FX_SGL2FX_DBL((FIXP_SGL)maxVal)) - 1));