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

/frameworks/av/media/libnbaio/
H A DMonoPipe.cpp155 size_t filled = (mMaxFrames - avail) + written; local
157 if (filled <= mSetpoint / 2) {
160 } else if (filled <= (mSetpoint * 3) / 4) {
163 } else if (filled <= (mSetpoint * 5) / 4) {
166 } else if (filled <= (mSetpoint * 3) / 2) {
169 } else if (filled <= (mSetpoint * 7) / 4) {
/frameworks/av/media/libmedia/
H A DAudioTrackShared.cpp127 // We're about to perform a conditional branch based on 'filled',
140 ssize_t filled = rear - front; local
142 if (!(0 <= filled && (size_t) filled <= mFrameCount)) {
144 ALOGE("Shared memory control block is corrupt (filled=%zd, mFrameCount=%zu); "
145 "shutting down", filled, mFrameCount);
151 filled = 0;
156 size_t avail = mIsOut ? mFrameCount - filled : filled;
346 ssize_t filled local
560 ssize_t filled = rear - newFront; local
583 ssize_t filled = rear - front; local
704 ssize_t filled = rear - cblk->u.mStreaming.mFront; local
[all...]
/frameworks/av/services/audioflinger/
H A DThreads.cpp3377 // for all its buffers to be filled before processing it
4052 // for all its buffers to be filled before processing it.
5388 ssize_t filled = rear - front; local
5391 if (filled < 0) {
5396 } else if ((size_t) filled <= mRsmpInFrames) {
5397 framesIn = (size_t) filled;
6012 ssize_t filled = rear - front;
6015 LOG_ALWAYS_FATAL_IF(!(0 <= filled && (size_t) filled <= recordThread->mRsmpInFrames));
6016 // 'filled' ma
[all...]

Completed in 74 milliseconds