• Home
  • Raw
  • Download

Lines Matching refs:tReal

321   FIXP_DBL *RESTRICT tReal = pTimeOut;  in qmfInverseModulationLP_even()  local
325 scaleValuesSaturate(&tReal[0], &qmfReal[0], synQmf->lsb, scaleFactorLowBand); in qmfInverseModulationLP_even()
326 scaleValuesSaturate(&tReal[0 + synQmf->lsb], &qmfReal[0 + synQmf->lsb], in qmfInverseModulationLP_even()
328 FDKmemclear(&tReal[0 + synQmf->usb], (L - synQmf->usb) * sizeof(FIXP_DBL)); in qmfInverseModulationLP_even()
331 dct_II(tReal, tImag, L, &scale); in qmfInverseModulationLP_even()
334 tImag[0] = tReal[M]; in qmfInverseModulationLP_even()
336 tmp = tReal[0]; in qmfInverseModulationLP_even()
337 tReal[0] = tReal[M]; in qmfInverseModulationLP_even()
338 tReal[M] = tmp; in qmfInverseModulationLP_even()
342 tmp = tReal[L - i]; in qmfInverseModulationLP_even()
346 tmp = tReal[M + i]; in qmfInverseModulationLP_even()
351 tReal[M + i] = tReal[i]; in qmfInverseModulationLP_even()
352 tReal[L - i] = tReal[M - i]; in qmfInverseModulationLP_even()
353 tmp = tReal[i]; in qmfInverseModulationLP_even()
354 tReal[i] = tReal[M - i]; in qmfInverseModulationLP_even()
355 tReal[M - i] = tmp; in qmfInverseModulationLP_even()
358 tmp = tReal[M + M / 2]; in qmfInverseModulationLP_even()
362 tReal[M + M / 2] = tReal[M / 2]; in qmfInverseModulationLP_even()
410 FIXP_DBL *RESTRICT tReal = pWorkBuffer; in qmfInverseModulationHQ() local
415 cplxMultDiv2(&tImag[i], &tReal[i], qmfImag[i], qmfReal[i], in qmfInverseModulationHQ()
418 scaleValuesSaturate(&tReal[0], synQmf->lsb, scaleFactorLowBand + 1); in qmfInverseModulationHQ()
419 scaleValuesSaturate(&tReal[0 + synQmf->lsb], synQmf->usb - synQmf->lsb, in qmfInverseModulationHQ()
427 scaleValuesSaturate(&tReal[0], &qmfReal[0], synQmf->lsb, in qmfInverseModulationHQ()
429 scaleValuesSaturate(&tReal[0 + synQmf->lsb], &qmfReal[0 + synQmf->lsb], in qmfInverseModulationHQ()
437 FDKmemclear(&tReal[synQmf->usb], in qmfInverseModulationHQ()
442 dct_IV(tReal, L, &shift); in qmfInverseModulationHQ()
448 r1 = tReal[i]; in qmfInverseModulationHQ()
450 r2 = tReal[L - i - 1]; in qmfInverseModulationHQ()
453 tReal[i] = (r1 - i1) >> 1; in qmfInverseModulationHQ()
455 tReal[L - i - 1] = (r2 - i2) >> 1; in qmfInverseModulationHQ()
464 r1 = -tReal[i]; in qmfInverseModulationHQ()
466 r2 = -tReal[L - i - 1]; in qmfInverseModulationHQ()
469 tReal[i] = (r1 - i1) >> 1; in qmfInverseModulationHQ()
471 tReal[L - i - 1] = (r2 - i2) >> 1; in qmfInverseModulationHQ()