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

/frameworks/base/media/libmedia/
H A DAudioRecord.cpp523 uint32_t bufferEnd = cblk->userBase + cblk->frameCount; local
525 if (u + framesReq > bufferEnd) {
526 framesReq = bufferEnd - u;
H A DAudioTrack.cpp860 uint32_t bufferEnd = cblk->userBase + cblk->frameCount; local
862 if (u + framesReq > bufferEnd) {
863 framesReq = bufferEnd - u;
/frameworks/base/services/audioflinger/
H A DAudioFlinger.cpp2887 int8_t *bufferEnd = bufferStart + frames * cblk->frameSize; local
2890 if (bufferStart < mBuffer || bufferStart > bufferEnd || bufferEnd > mBufferEnd ||
2894 bufferStart, bufferEnd, mBuffer, mBufferEnd,
3017 uint32_t bufferEnd = cblk->serverBase + cblk->frameCount; local
3019 bufferEnd = (cblk->loopEnd < bufferEnd) ? cblk->loopEnd : bufferEnd;
3023 if (s + framesReq > bufferEnd) {
3024 framesReq = bufferEnd
3257 uint32_t bufferEnd = cblk->serverBase + cblk->frameCount; local
3529 uint32_t bufferEnd = cblk->userBase + cblk->frameCount; local
[all...]

Completed in 99 milliseconds