Searched refs:phaseWrapLimit (Results 1 – 2 of 2) sorted by relevance
391 const uint32_t phaseWrapLimit = c.mL << c.mShift; in setSampleRate() local394 * phaseWrapLimit / oldPhaseWrapLimit; in setSampleRate()395 mPhaseFraction %= phaseWrapLimit; // should not do anything, but just in case. in setSampleRate()396 mPhaseIncrement = static_cast<uint32_t>(static_cast<uint64_t>(phaseWrapLimit) in setSampleRate()501 const uint32_t phaseWrapLimit = c.mL << c.mShift; in resample() local503 / phaseWrapLimit; in resample()536 if (phaseFraction >= phaseWrapLimit) { // read in data in resample()541 phaseFraction -= phaseWrapLimit; in resample()542 while (phaseFraction >= phaseWrapLimit) { in resample()552 phaseFraction -= phaseWrapLimit; in resample()[all …]
339 const uint32_t phase, const uint32_t phaseWrapLimit, in fir() argument352 uint32_t indexN = (phaseWrapLimit - phase) >> coefShift; in fir()365 uint32_t indexN = (phaseWrapLimit - phase - 1) >> coefShift; // one's complement. in fir()