Lines Matching refs:tReal
608 FIXP_DBL *RESTRICT tReal = pTimeOut; in qmfInverseModulationLP_even() local
612 scaleValues(&tReal[0], &qmfReal[0], synQmf->lsb, (int)scaleFactorLowBand); in qmfInverseModulationLP_even()
613 scaleValues(&tReal[0 + synQmf->lsb], &qmfReal[0 + synQmf->lsb], in qmfInverseModulationLP_even()
615 FDKmemclear(&tReal[0 + synQmf->usb], (L - synQmf->usb) * sizeof(FIXP_DBL)); in qmfInverseModulationLP_even()
618 dct_II(tReal, tImag, L, &scale); in qmfInverseModulationLP_even()
621 tImag[0] = tReal[M]; in qmfInverseModulationLP_even()
623 tmp = tReal[0]; in qmfInverseModulationLP_even()
624 tReal[0] = tReal[M]; in qmfInverseModulationLP_even()
625 tReal[M] = tmp; in qmfInverseModulationLP_even()
629 tmp = tReal[L - i]; in qmfInverseModulationLP_even()
633 tmp = tReal[M + i]; in qmfInverseModulationLP_even()
638 tReal[M + i] = tReal[i]; in qmfInverseModulationLP_even()
639 tReal[L - i] = tReal[M - i]; in qmfInverseModulationLP_even()
640 tmp = tReal[i]; in qmfInverseModulationLP_even()
641 tReal[i] = tReal[M - i]; in qmfInverseModulationLP_even()
642 tReal[M - i] = tmp; in qmfInverseModulationLP_even()
645 tmp = tReal[M + M / 2]; in qmfInverseModulationLP_even()
649 tReal[M + M / 2] = tReal[M / 2]; in qmfInverseModulationLP_even()
697 FIXP_DBL *RESTRICT tReal = pWorkBuffer; in qmfInverseModulationHQ() local
702 cplxMult(&tImag[i], &tReal[i], scaleValue(qmfImag[i], scaleFactorLowBand), in qmfInverseModulationHQ()
707 cplxMult(&tImag[i], &tReal[i], in qmfInverseModulationHQ()
715 scaleValues(&tReal[0], &qmfReal[0], synQmf->lsb, (int)scaleFactorLowBand); in qmfInverseModulationHQ()
716 scaleValues(&tReal[0 + synQmf->lsb], &qmfReal[0 + synQmf->lsb], in qmfInverseModulationHQ()
723 FDKmemclear(&tReal[synQmf->usb], in qmfInverseModulationHQ()
728 dct_IV(tReal, L, &shift); in qmfInverseModulationHQ()
734 r1 = tReal[i]; in qmfInverseModulationHQ()
736 r2 = tReal[L - i - 1]; in qmfInverseModulationHQ()
739 tReal[i] = (r1 - i1) >> 1; in qmfInverseModulationHQ()
741 tReal[L - i - 1] = (r2 - i2) >> 1; in qmfInverseModulationHQ()
750 r1 = -tReal[i]; in qmfInverseModulationHQ()
752 r2 = -tReal[L - i - 1]; in qmfInverseModulationHQ()
755 tReal[i] = (r1 - i1) >> 1; in qmfInverseModulationHQ()
757 tReal[L - i - 1] = (r2 - i2) >> 1; in qmfInverseModulationHQ()