Home
last modified time | relevance | path

Searched refs:flushed (Results 1 – 10 of 10) sorted by relevance

/frameworks/av/media/libnbaio/
DPipeReader.cpp85 ssize_t flushed = mFifoReader.flush(&lost); in flush() local
86 if (flushed == -EOVERFLOW || lost > 0) { in flush()
89 flushed = OVERRUN; in flush()
91 if (flushed <= 0) { in flush()
92 return flushed; in flush()
94 mFramesRead += (size_t) flushed; // we consider flushed frames as read, but not lost frames in flush()
95 return flushed; in flush()
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
DH264SwDecApi.c426 if(pDecCont->storage.dpb->flushed && in H264SwDecDecode()
432 pDecCont->storage.dpb->flushed = 0; in H264SwDecDecode()
Dh264bsd_dpb.h94 u32 flushed; member
Dh264bsd_decoder.c378 pStorage->dpb->flushed = 0; in h264bsdDecode()
Dh264bsd_dpb.c1515 dpb->flushed = 1; in h264bsdFlushDpb()
/frameworks/rs/script_api/
Drs_vector_math.spec30 subnormal values may be flushed to zero, rounding towards zero may be used, and NaN and
33 values may be flushed to zero, and rounding towards zero may be used.</li>
Drs_math.spec36 rs_fp_relaxed and rs_fp_full. Under rs_fp_relaxed, subnormal values may be flushed to zero and
44 subnormal values may be flushed to zero, rounding towards zero may be used, and NaN and
47 values may be flushed to zero, and rounding towards zero may be used.</li>
/frameworks/rs/script_api/include/
Drs_vector_math.rsh31 * subnormal values may be flushed to zero, rounding towards zero may be used, and NaN and
34 * values may be flushed to zero, and rounding towards zero may be used.
Drs_math.rsh38 * rs_fp_relaxed and rs_fp_full. Under rs_fp_relaxed, subnormal values may be flushed to zero and
46 * subnormal values may be flushed to zero, rounding towards zero may be used, and NaN and
49 * values may be flushed to zero, and rounding towards zero may be used.
/frameworks/av/services/audioflinger/
DThreads.cpp6599 const ssize_t flushed = mPipeSource->flush(); in inputStandBy() local
6600 if (flushed > 0) { in inputStandBy()
6601 ALOGV("Input standby flushed PipeSource %zd frames", flushed); in inputStandBy()
6602 mTimestamp.mPosition[ExtendedTimestamp::LOCATION_SERVER] += flushed; in inputStandBy()