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;
643 ssize_t filled local
696 ssize_t filled = rear - front; local
820 ssize_t filled = rear - cblk->u.mStreaming.mFront; local
[all...]
/frameworks/av/services/audioflinger/
H A DThreads.cpp4227 // for all its buffers to be filled before processing it
4946 // for all its buffers to be filled before processing it.
6961 const ssize_t filled = rear - front; local
6965 if (filled < 0) {
6970 } else if ((size_t) filled <= recordThread->mRsmpInFrames) {
6971 framesIn = (size_t) filled;
6999 ssize_t filled = rear - front; local
7002 LOG_ALWAYS_FATAL_IF(!(0 <= filled && (size_t) filled <= recordThread->mRsmpInFrames));
7003 // 'filled' ma
[all...]

Completed in 240 milliseconds