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

/frameworks/av/media/libnbaio/
H A DMonoPipe.cpp105 size_t filled = (mMaxFrames - avail) + written; local
107 if (filled <= mSetpoint / 2) {
110 } else if (filled <= (mSetpoint * 3) / 4) {
113 } else if (filled <= (mSetpoint * 5) / 4) {
116 } else if (filled <= (mSetpoint * 3) / 2) {
119 } else if (filled <= (mSetpoint * 7) / 4) {
/frameworks/av/media/libmedia/
H A DAudioTrackShared.cpp173 // We're about to perform a conditional branch based on 'filled',
187 ssize_t filled = rear - front; local
189 if (!(0 <= filled && (size_t) filled <= mFrameCount)) {
191 ALOGE("Shared memory control block is corrupt (filled=%zd, mFrameCount=%zu); "
192 "shutting down", filled, mFrameCount);
198 filled = 0;
207 ssize_t avail = (mIsOut) ? adjustableSize - filled : filled;
647 ssize_t filled local
681 ssize_t filled = rear - front; local
805 ssize_t filled = rear - cblk->u.mStreaming.mFront; local
[all...]
/frameworks/av/services/audioflinger/
H A DThreads.cpp4032 // for all its buffers to be filled before processing it
4733 // for all its buffers to be filled before processing it.
6662 const ssize_t filled = rear - front; local
6666 if (filled < 0) {
6671 } else if ((size_t) filled <= recordThread->mRsmpInFrames) {
6672 framesIn = (size_t) filled;
6700 ssize_t filled = rear - front; local
6703 LOG_ALWAYS_FATAL_IF(!(0 <= filled && (size_t) filled <= recordThread->mRsmpInFrames));
6704 // 'filled' ma
[all...]

Completed in 551 milliseconds