Searched refs:vector (Results 1 - 25 of 180) sorted by path

12345678

/frameworks/av/drm/mediadrm/plugins/mock/
H A DMockDrmCryptoPlugin.cpp689 String8 MockDrmPlugin::vectorToString(Vector<uint8_t> const &vector) const
691 return arrayToString(vector.array(), vector.size());
H A DMockDrmCryptoPlugin.h140 String8 vectorToString(Vector<uint8_t> const &vector) const;
/frameworks/av/include/media/
H A DIDrm.h135 void readVector(const Parcel &data, Vector<uint8_t> &vector) const;
136 void writeVector(Parcel *reply, Vector<uint8_t> const &vector) const;
/frameworks/av/media/libeffects/loudness/common/core/
H A Dbasic_types.h25 #include <vector>
26 using ::std::vector;
98 class WaveData : public vector<int16> {
/frameworks/av/media/libeffects/loudness/dsp/core/
H A Dinterpolator_base-inl.h53 bool InterpolatorBase<T, Algorithm>::Initialize(const vector<T> &x_data,
54 const vector<T> &y_data) {
67 const vector<T> &y_data) {
H A Dinterpolator_base.h66 bool Initialize(const vector<T> &x_data, const vector<T> &y_data);
72 const vector<T> &y_data);
/frameworks/av/media/libmedia/
H A DIDrm.cpp459 void readVector(Parcel &reply, Vector<uint8_t> &vector) const {
461 vector.insertAt((size_t)0, size);
462 reply.read(vector.editArray(), size);
465 void writeVector(Parcel &data, Vector<uint8_t> const &vector) const {
466 data.writeInt32(vector.size());
467 data.write(vector.array(), vector.size());
477 void BnDrm::readVector(const Parcel &data, Vector<uint8_t> &vector) const {
479 vector.insertAt((size_t)0, size);
480 data.read(vector
[all...]
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dtransform.c434 * description: Calculate max possible scale factor for input vector of shorts
438 static Word16 getScalefactorOfShortVectorStride(const Word16 *vector, /*!< Pointer to input vector */ argument
439 Word16 len, /*!< Length of input vector */
440 Word16 stride) /*!< Stride of input vector */
447 absVal = abs_s(vector[i*stride]);
458 * description: Calculate transform filter for input vector of shorts
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dvlc_decode.cpp264 * 5/10/00 : check whether the decoded vector is legal.
315 * 5/10/2000 : check to see if the decoded vector falls within
323 MOT *vector /* --> Obtained MV component in 1/2 units */
344 *vector += (MOT)(diff_vector);
346 *vector = (MOT)((*vector + half_range) & mask) - half_range;
H A Dvlc_decode.h97 PV_STATUS PV_DeScaleMVD(int f_code, int residual, int vlc_code_mag, MOT *vector);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_DecodePadMV_PVOP_s.s31 ; * The motion vector padding process is specified in subclause 7.6.1.6 of
43 ; * [in] pSrcMVLeftMB pointers to the motion vector buffers of the
46 ; * [in] pSrcMVUpperMB pointers to the motion vector buffers of the
49 ; * [in] pSrcMVUpperRightMB pointers to the motion vector buffers of the
56 ; * motion vector buffer is still filled with the
57 ; * same decoded vector.
64 ; * [out] pDstMVCurMB pointer to the motion vector buffer of the current
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DomxVCM4P2_DecodePadMV_PVOP_s.s31 ; * The motion vector padding process is specified in subclause 7.6.1.6 of
43 ; * [in] pSrcMVLeftMB pointers to the motion vector buffers of the
46 ; * [in] pSrcMVUpperMB pointers to the motion vector buffers of the
49 ; * [in] pSrcMVUpperRightMB pointers to the motion vector buffers of the
56 ; * motion vector buffer is still filled with the
57 ; * same decoded vector.
64 ; * [out] pDstMVCurMB pointer to the motion vector buffer of the current
/frameworks/av/services/audioflinger/tests/
H A Dresampler_tests.cpp30 #include <vector>
40 size_t outputFrames, const std::vector<size_t> &outputIncr,
75 std::vector<int> inputIncr;
101 std::vector<size_t> refIncr;
120 std::vector<size_t> outIncr;
166 std::vector<int> inputIncr;
189 std::vector<size_t> refIncr;
H A Dtest-mixer.cpp20 #include <vector>
88 std::vector<int> Pvalues;
91 std::vector<int32_t> Names;
92 std::vector<SignalProvider> Providers;
148 std::vector<int> v;
163 std::vector<int> v;
H A Dtest_utils.h51 static inline int parseCSV(const char *string, std::vector<int>& values)
64 // pass 2: allocate and initialize vector of values
96 const std::vector<int>& inputIncr)
110 void setIncr(const std::vector<int>& inputIncr) {
180 std::vector<int> mInputIncr; // number of frames provided per call
/frameworks/base/core/java/android/gesture/
H A DGestureStore.java139 return mClassifier.classify(mSequenceType, mOrientationStyle, instance.vector);
H A DGestureUtils.java271 float[] vector = new float[vectorLength];
279 vector[index] = lstPointX;
281 vector[index] = lstPointY;
301 vector[index] = nx;
303 vector[index] = ny;
318 vector[i] = lstPointX;
319 vector[i + 1] = lstPointY;
321 return vector;
H A DInstance.java35 // the feature vector
36 final float[] vector; field in class:Instance
46 vector = sample;
51 float[] sample = vector;
H A DInstanceLearner.java44 ArrayList<Prediction> classify(int sequenceType, int orientationType, float[] vector) { argument
51 if (sample.vector.length != vector.length) {
56 distance = GestureUtils.minimumCosineDistance(sample.vector, vector, orientationType);
58 distance = GestureUtils.squaredEuclideanDistance(sample.vector, vector);
H A DLearner.java83 abstract ArrayList<Prediction> classify(int sequenceType, int orientationType, float[] vector); argument
/frameworks/base/core/jni/android/graphics/
H A DPath.cpp31 #include <vector>
276 static void addMove(std::vector<SkPoint>& segmentPoints, std::vector<float>& lengths,
286 static void addLine(std::vector<SkPoint>& segmentPoints, std::vector<float>& lengths,
352 bezierCalculation bezierFunction, std::vector<SkPoint>& segmentPoints,
353 std::vector<float>& lengths, float errorSquared, bool doubleCheckDivision) {
395 std::vector<SkPoint>& segmentPoints, std::vector<float>& lengths, float errorSquared) {
434 std::vector<SkPoin
[all...]
H A DTypefaceImpl.cpp30 #include <vector>
64 std::vector<FontFamily *>typefaces;
138 std::vector<FontFamily *>familyVec;
/frameworks/base/core/jni/android/graphics/pdf/
H A DPdfDocument.cpp20 #include <vector>
123 std::vector<PageRecord*> mPages;
H A DPdfEditor.cpp27 #include <vector>
H A DPdfRenderer.cpp26 #include <vector>

Completed in 3860 milliseconds

12345678