Lines Matching refs:phaseFraction
632 uint32_t phaseFraction = mPhaseFraction; in resample() local
637 size_t inFrameCount = (phaseIncrement * (uint64_t)outFrameCount + phaseFraction) in resample()
673 if (phaseFraction >= phaseWrapLimit) { // read in data in resample()
678 phaseFraction -= phaseWrapLimit; in resample()
679 while (phaseFraction >= phaseWrapLimit) { in resample()
689 phaseFraction -= phaseWrapLimit; in resample()
710 ALOG_ASSERT(phaseFraction < phaseWrapLimit); in resample()
713 phaseFraction, phaseWrapLimit, in resample()
719 phaseFraction += phaseIncrement; in resample()
720 while (phaseFraction >= phaseWrapLimit) { in resample()
726 phaseFraction -= phaseWrapLimit; in resample()
746 inputIndex, mBuffer.frameCount, phaseFraction); in resample()
749 mPhaseFraction = phaseFraction; in resample()