Lines Matching refs:maxVal
607 SHORT temp, maxVal = 0; in getScalefactorShort() local
611 maxVal |= (temp ^ (temp >> (SHORT_BITS - 1))); in getScalefactorShort()
614 return fixmax_I((INT)0, (INT)(fixnormz_D((INT)maxVal) - (INT)1 - in getScalefactorShort()
633 INT_PCM temp, maxVal = 0; in getScalefactorPCM() local
638 maxVal |= (temp ^ (temp >> ((sizeof(INT_PCM) * 8) - 1))); in getScalefactorPCM()
640 return fixmax_I((INT)0, (INT)(fixnormz_D((INT)maxVal) - (INT)1 - in getScalefactorPCM()
659 SHORT temp, maxVal = 0; in getScalefactorShort() local
664 maxVal |= (temp ^ (temp >> (SHORT_BITS - 1))); in getScalefactorShort()
667 return fixmax_I((INT)0, (INT)(fixnormz_D((INT)maxVal) - (INT)1 - in getScalefactorShort()
693 FIXP_DBL temp, maxVal = (FIXP_DBL)0; in getScalefactor() local
697 maxVal |= (FIXP_DBL)((LONG)temp ^ (LONG)(temp >> (DFRACT_BITS - 1))); in getScalefactor()
700 return fixmax_I((INT)0, (INT)(fixnormz_D(maxVal) - 1)); in getScalefactor()
711 SHORT temp, maxVal = (FIXP_SGL)0; in getScalefactor() local
715 maxVal |= (temp ^ (temp >> (FRACT_BITS - 1))); in getScalefactor()
718 return fixmax_I((INT)0, (INT)(fixnormz_S((FIXP_SGL)maxVal)) - 1); in getScalefactor()