Searched refs:filled (Results 1 - 8 of 8) 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/base/libs/hwui/tests/common/scenes/
H A DListViewAnimation.cpp104 static SkBitmap createBoxBitmap(bool filled) {
113 paint.setColor(filled ? Color::Yellow_500 : Color::Grey_700);
114 paint.setStyle(filled ? SkPaint::kStrokeAndFill_Style : SkPaint::kStroke_Style);
/frameworks/base/tests/touchlag/
H A Dtouchlag.cpp106 size_t x0, size_t y0, size_t radius, bool filled = false) {
112 if (filled) {
126 if (filled) {
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_DecodePadMV_PVOP_s.s56 ; * motion vector buffer is still filled with the
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DomxVCM4P2_DecodePadMV_PVOP_s.s56 ; * motion vector buffer is still filled with the
/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...]
/frameworks/rs/api/
H A Drs_matrix.spec226 of the destination is filled with elements of the identity matrix. E.g.

Completed in 4512 milliseconds