Searched refs:bufferEnd (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/media/libmedia/
H A DAudioRecord.cpp504 uint32_t bufferEnd = cblk->userBase + cblk->frameCount; local
506 if (u + framesReq > bufferEnd) {
507 framesReq = bufferEnd - u;
H A DAudioTrack.cpp735 uint32_t bufferEnd = cblk->userBase + cblk->frameCount; local
737 if (u + framesReq > bufferEnd) {
738 framesReq = bufferEnd - u;
/frameworks/base/libs/audioflinger/
H A DAudioFlinger.cpp2432 int8_t *bufferEnd = bufferStart + frames * cblk->frameSize; local
2435 if (bufferStart < mBuffer || bufferStart > bufferEnd || bufferEnd > mBufferEnd ||
2439 bufferStart, bufferEnd, mBuffer, mBufferEnd,
2554 uint32_t bufferEnd = cblk->serverBase + cblk->frameCount; local
2556 bufferEnd = (cblk->loopEnd < bufferEnd) ? cblk->loopEnd : bufferEnd;
2560 if (s + framesReq > bufferEnd) {
2561 framesReq = bufferEnd
2769 uint32_t bufferEnd = cblk->serverBase + cblk->frameCount; local
3040 uint32_t bufferEnd = cblk->userBase + cblk->frameCount; local
[all...]

Completed in 89 milliseconds