• Home
  • Raw
  • Download

Lines Matching refs:sineLevel

1855   FIXP_DBL  signalReal, sineLevel, sineLevelNext, sineLevelPrev;  in adjustTimeSlotLC()  local
1874 sineLevel = *pSineLevel++; in adjustTimeSlotLC()
1877 if (sineLevel!=FL2FXCONST_DBL(0.0f)) tone_count++; in adjustTimeSlotLC()
1885 signalReal += (harmIndex&0x2) ? -sineLevel : sineLevel; in adjustTimeSlotLC()
1893 FIXP_DBL tmp1 = (shift>=0) ? ( fMultDiv2(C1, sineLevel) >> shift ) in adjustTimeSlotLC()
1894 : ( fMultDiv2(C1, sineLevel) << (-shift) ); in adjustTimeSlotLC()
1972 sineLevel = pSineLevel[0]; in adjustTimeSlotLC()
1983 *ptrReal = signalReal + ( (sineSign) ? -sineLevel : sineLevel); in adjustTimeSlotLC()
1991 *ptrReal = *ptrReal + fMultDiv2(C1, sineLevel); in adjustTimeSlotLC()
1996 *ptrReal = *ptrReal - fMultDiv2(C1, sineLevel); in adjustTimeSlotLC()
2035 FIXP_DBL sineLevel; in adjustTimeSlotHQ() local
2087 sineLevel = pSineLevel[k]; in adjustTimeSlotHQ()
2091 *ptrReal++ = (signalReal + sineLevel); in adjustTimeSlotHQ()
2095 *ptrReal++ = (signalReal - sineLevel); in adjustTimeSlotHQ()
2101 *ptrImag++ = (signalImag - sineLevel); in adjustTimeSlotHQ()
2103 *ptrImag++ = (signalImag + sineLevel); in adjustTimeSlotHQ()
2108 *ptrImag++ = (signalImag + sineLevel); in adjustTimeSlotHQ()
2110 *ptrImag++ = (signalImag - sineLevel); in adjustTimeSlotHQ()
2143 if ((sineLevel = pSineLevel[k]) != FL2FXCONST_DBL(0.0f)) in adjustTimeSlotHQ()
2148 signalReal += sineLevel; in adjustTimeSlotHQ()
2152 signalImag -= sineLevel; in adjustTimeSlotHQ()
2154 signalImag += sineLevel; in adjustTimeSlotHQ()
2157 signalReal -= sineLevel; in adjustTimeSlotHQ()
2161 signalImag += sineLevel; in adjustTimeSlotHQ()
2163 signalImag -= sineLevel; in adjustTimeSlotHQ()