Searched defs:Length (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/media/mca/filterpacks/native/base/
H A Dvec_types.h40 T Length() { function in class:android::filterfw::VecBase
H A Dgeometry.cpp27 float Point::Length() const { function in class:android::filterfw::Point
32 float length = Length();
43 return diff.Length();
/frameworks/base/media/mca/filterfw/native/core/
H A Dgeometry.cpp26 float Point::Length() const { function in class:android::filterfw::Point
31 float length = Length();
42 return diff.Length();
/frameworks/av/media/libstagefright/codecs/common/include/
H A DvoType.h167 VO_U32 Length; /*!< Buffer size in byte */ member in struct:__anon566
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dbitstream_io.cpp108 /* Function : BitstreamPutBits(BitstreamEncVideo *stream, Int Length,
111 /* Purpose : put Length (1-16) number of bits to the stream */
115 /* Length bits length (should belong to 1 to 16) */
120 PV_STATUS BitstreamPutBits(BitstreamEncVideo *stream, Int Length, UInt Value) argument
124 if (stream->bitLeft > Length)
126 stream->word <<= Length;
127 stream->word |= Value; /* assuming Value is not larger than Length */
128 stream->bitLeft -= Length;
135 Length -= stream->bitLeft;
136 stream->word |= ((UInt)Value >> Length);
168 BitstreamPutGT16Bits(BitstreamEncVideo *stream, Int Length, ULong Value) argument
[all...]
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp64 virtual int Length(long long* total, long long* available) { function in struct:android::DataSourceReader

Completed in 1000 milliseconds