Lines Matching refs:loopStart
540 status_t AudioTrack::setLoop(uint32_t loopStart, uint32_t loopEnd, int loopCount) in setLoop() argument
543 return setLoop_l(loopStart, loopEnd, loopCount); in setLoop()
547 status_t AudioTrack::setLoop_l(uint32_t loopStart, uint32_t loopEnd, int loopCount) in setLoop_l() argument
554 cblk->loopStart = UINT_MAX; in setLoop_l()
561 if (loopStart >= loopEnd || in setLoop_l()
562 loopEnd - loopStart > cblk->frameCount || in setLoop_l()
563 cblk->server > loopStart) { in setLoop_l()
564 …value: loopStart %d, loopEnd %d, loopCount %d, framecount %d, user %d", loopStart, loopEnd, loopCo… in setLoop_l()
570 loopStart, loopEnd, cblk->frameCount); in setLoop_l()
574 cblk->loopStart = loopStart; in setLoop_l()
582 status_t AudioTrack::getLoop(uint32_t *loopStart, uint32_t *loopEnd, int *loopCount) in getLoop() argument
585 if (loopStart != 0) { in getLoop()
586 *loopStart = mCblk->loopStart; in getLoop()
1199 setLoop_l(cblk->loopStart, cblk->loopEnd, cblk->loopCount); in restoreTrack_l()
1311 loopStart(UINT_MAX), loopEnd(UINT_MAX), loopCount(0), volumeLR(0), in audio_track_cblk_t()
1374 s = loopStart; in stepServer()
1377 loopStart = UINT_MAX; in stepServer()
1410 uint32_t limit = (s < loopStart) ? s : loopStart; in framesAvailable_l()
1433 frames = (loopEnd - loopStart)*loopCount + u - s; in framesReady()