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

/frameworks/base/media/libmedia/
H A DAudioRecord.cpp497 uint32_t bufferEnd = cblk->userBase + cblk->frameCount; local
499 if (u + framesReq > bufferEnd) {
500 framesReq = bufferEnd - u;
H A DAudioTrack.cpp736 uint32_t bufferEnd = cblk->userBase + cblk->frameCount; local
738 if (u + framesReq > bufferEnd) {
739 framesReq = bufferEnd - u;
/frameworks/base/libs/audioflinger/
H A DAudioFlinger.cpp2265 int8_t *bufferEnd = bufferStart + frames * cblk->frameSize; local
2268 if (bufferStart < mBuffer || bufferStart > bufferEnd || bufferEnd > mBufferEnd ||
2272 bufferStart, bufferEnd, mBuffer, mBufferEnd,
2387 uint32_t bufferEnd = cblk->serverBase + cblk->frameCount; local
2389 bufferEnd = (cblk->loopEnd < bufferEnd) ? cblk->loopEnd : bufferEnd;
2393 if (s + framesReq > bufferEnd) {
2394 framesReq = bufferEnd
2602 uint32_t bufferEnd = cblk->serverBase + cblk->frameCount; local
2873 uint32_t bufferEnd = cblk->userBase + cblk->frameCount; local
[all...]

Completed in 176 milliseconds