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

/frameworks/base/core/java/com/android/internal/util/
H A DIndentingPrintWriter.java55 final int bufferEnd = offset + count;
58 while (lineEnd < bufferEnd) {
/frameworks/av/media/libmedia/
H A DAudioRecord.cpp556 uint32_t bufferEnd = cblk->userBase + cblk->frameCount; local
558 if (framesReq > bufferEnd - u) {
559 framesReq = bufferEnd - u;
H A DAudioTrack.cpp1036 uint32_t bufferEnd = cblk->userBase + cblk->frameCount; local
1038 if (framesReq > bufferEnd - u) {
1039 framesReq = bufferEnd - u;
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp4292 int8_t *bufferEnd = bufferStart + frames * frameSize; local
4295 ALOG_ASSERT(!(bufferStart < mBuffer || bufferStart > bufferEnd || bufferEnd > mBufferEnd),
4299 bufferStart, bufferEnd, mBuffer, mBufferEnd,
4526 uint32_t bufferEnd = cblk->serverBase + cblk->frameCount; local
4528 bufferEnd = (cblk->loopEnd < bufferEnd) ? cblk->loopEnd : bufferEnd;
4532 if (framesReq > bufferEnd - s) {
4533 framesReq = bufferEnd
5415 uint32_t bufferEnd = cblk->serverBase + cblk->frameCount; local
5701 uint32_t bufferEnd = cblk->userBase + cblk->frameCount; local
[all...]

Completed in 2414 milliseconds