Lines Matching refs:mRsmpInFrames
9322 } else if (sharedOffset > static_cast<signed>(mRsmpInFrames)) { in shareAudioHistory_l()
9324 audio_utils::safe_sub_overflow(mRsmpInRear, (int32_t)mRsmpInFrames); in shareAudioHistory_l()
9484 if ((size_t) deltaFrames > recordThread->mRsmpInFrames) { in reset()
9485 deltaFrames = recordThread->mRsmpInFrames; in reset()
9507 } else if ((size_t) filled <= recordThread->mRsmpInFrames) { in sync()
9511 framesIn = recordThread->mRsmpInFrames; in sync()
9540 LOG_ALWAYS_FATAL_IF(!(0 <= filled && (size_t) filled <= recordThread->mRsmpInFrames)); in getNextBuffer()
9762 mRsmpInFrames = 0; in readInputParameters_l()
9955 if (maxFilled > static_cast<signed>(mRsmpInFrames)) { in getOldestFront_l()
9956 (void)__builtin_sub_overflow(mRsmpInRear, mRsmpInFrames, &oldestFront); in getOldestFront_l()
10003 ALOG_ASSERT(mRsmpInBuffer != nullptr && mRsmpInFrames != 0, in resizeInputBuffer_l()
10007 if (rsmpInFrames <= mRsmpInFrames) { in resizeInputBuffer_l()
10010 mRsmpInFrames = rsmpInFrames; in resizeInputBuffer_l()
10015 if (mRsmpInFrames < minRsmpInFrames) { in resizeInputBuffer_l()
10016 mRsmpInFrames = minRsmpInFrames; in resizeInputBuffer_l()
10018 mRsmpInFramesP2 = roundup(mRsmpInFrames); in resizeInputBuffer_l()