Home | History | Annotate | Download | only in audioflinger

Lines Matching refs:bufferEnd

2887     int8_t *bufferEnd = bufferStart + frames * cblk->frameSize;
2890 if (bufferStart < mBuffer || bufferStart > bufferEnd || bufferEnd > mBufferEnd ||
2894 bufferStart, bufferEnd, mBuffer, mBufferEnd,
3017 uint32_t bufferEnd = cblk->serverBase + cblk->frameCount;
3019 bufferEnd = (cblk->loopEnd < bufferEnd) ? cblk->loopEnd : bufferEnd;
3023 if (s + framesReq > bufferEnd) {
3024 framesReq = bufferEnd - s;
3257 uint32_t bufferEnd = cblk->serverBase + cblk->frameCount;
3262 if (s + framesReq > bufferEnd) {
3263 framesReq = bufferEnd - s;
3529 uint32_t bufferEnd = cblk->userBase + cblk->frameCount;
3531 if (u + framesReq > bufferEnd) {
3532 framesReq = bufferEnd - u;