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

/frameworks/av/media/libnbaio/
H A DMonoPipe.cpp99 size_t filled = mMaxFrames - (size_t) avail; local
101 if (filled <= mSetpoint / 2) {
104 } else if (filled <= (mSetpoint * 3) / 4) {
107 } else if (filled <= (mSetpoint * 5) / 4) {
110 } else if (filled <= (mSetpoint * 3) / 2) {
113 } else if (filled <= (mSetpoint * 7) / 4) {
/frameworks/av/media/libaudioclient/
H A DAudioTrackShared.cpp174 // We're about to perform a conditional branch based on 'filled',
188 ssize_t filled = rear - front; local
190 if (!(0 <= filled && (size_t) filled <= mFrameCount)) {
192 ALOGE("Shared memory control block is corrupt (filled=%zd, mFrameCount=%zu); "
193 "shutting down", filled, mFrameCount);
199 filled = 0;
208 ssize_t avail = (mIsOut) ? adjustableSize - filled : filled;
648 ssize_t filled local
702 ssize_t filled = rear - front; local
830 ssize_t filled = rear - cblk->u.mStreaming.mFront; local
856 const ssize_t filled = rear - cblk->u.mStreaming.mFront; local
[all...]
/frameworks/av/services/audioflinger/
H A DThreads.cpp4221 // for all its buffers to be filled before processing it
4972 // for all its buffers to be filled before processing it.
7031 const ssize_t filled = rear - front; local
7035 if (filled < 0) {
7040 } else if ((size_t) filled <= recordThread->mRsmpInFrames) {
7041 framesIn = (size_t) filled;
7069 ssize_t filled = rear - front; local
7072 LOG_ALWAYS_FATAL_IF(!(0 <= filled && (size_t) filled <= recordThread->mRsmpInFrames));
7073 // 'filled' ma
[all...]

Completed in 125 milliseconds