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.cpp121 // We're about to perform a conditional branch based on 'filled',
134 ssize_t filled = rear - front; local
136 if (!(0 <= filled && (size_t) filled <= mFrameCount)) {
138 ALOGE("Shared memory control block is corrupt (filled=%zd, mFrameCount=%zu); "
139 "shutting down", filled, mFrameCount);
145 filled = 0;
150 size_t avail = mIsOut ? mFrameCount - filled : filled;
338 ssize_t filled local
555 ssize_t filled = rear - front; local
675 ssize_t filled = rear - cblk->u.mStreaming.mFront; local
[all...]
/frameworks/av/services/audioflinger/
H A DThreads.cpp3354 // for all its buffers to be filled before processing it
4004 // for all its buffers to be filled before processing it
5281 ssize_t filled = rear - front; local
5284 if (filled < 0) {
5289 } else if ((size_t) filled <= mRsmpInFrames) {
5290 framesIn = (size_t) filled;
5905 ssize_t filled = rear - front;
5908 LOG_ALWAYS_FATAL_IF(!(0 <= filled && (size_t) filled <= recordThread->mRsmpInFrames));
5909 // 'filled' ma
[all...]

Completed in 314 milliseconds