Searched defs:vector (Results 1 - 25 of 276) sorted by relevance

1234567891011>>

/external/clang/test/Modules/Inputs/submodules/
H A Dvector.h1 template<typename T> class vector { }; class
/external/chromium_org/third_party/qcms/src/
H A Dmatrix.h27 struct vector { struct
31 struct vector matrix_eval(struct matrix mat, struct vector v);
/external/clang/test/Modules/Inputs/
H A Dmodule_private_left.h16 __module_private__ class vector;
19 __module_private__ class vector { class
22 vector<float> vec_float;
/external/clang/test/SemaCXX/
H A Dcxx0x-initializer-stdinitializerlist-system-header.cpp10 class vector { class in namespace:std::__debug
12 explicit vector() {} // expected-warning{{should not be explicit}} function in class:std::__debug::vector
21 struct { int a, b; std::__debug::vector<int> c; } e[] = { {1, 1} }; // expected-note{{used in initialization here}}
H A Dfor-range-unused.cpp19 Vector<int> vector; local
20 vector.doIt(); // expected-note {{here}}
/external/clang/test/CodeCompletion/
H A Dtemplates.cpp9 class vector : Alloc { class in namespace:std
14 template<typename Alloc> class vector<bool, Alloc>;
18 std::vector<int> v;
22 // CHECK-CC1-NEXT: vector<<#typename T#>{#, <#typename Alloc#>#}>
/external/aac/libFDK/src/mips/
H A Dscale.cpp97 * \brief Calculate max possible scale factor for input vector
105 inline INT getScalefactor(const FIXP_DBL *vector, /*!< Pointer to input vector */ argument
106 INT len) /*!< Length of input vector */
112 maxVal |= __builtin_mips_absq_s_w(*vector++);
/external/chromium_org/mojo/services/html_viewer/
H A Dblink_basic_type_converters.h35 static Array<T> Convert(const blink::WebVector<U>& vector) { argument
36 Array<T> array(vector.size());
37 for (size_t i = 0; i < vector.size(); ++i)
38 array[i] = TypeConverter<T, U>::Convert(vector[i]);
/external/chromium_org/v8/src/
H A Dtype-feedback-vector.cc8 #include "src/type-feedback-vector-inl.h"
15 Isolate* isolate, Handle<TypeFeedbackVector> vector) {
18 isolate->factory()->CopyFixedArray(Handle<FixedArray>::cast(vector)));
14 Copy( Isolate* isolate, Handle<TypeFeedbackVector> vector) argument
/external/clang/test/CXX/temp/temp.decls/temp.alias/
H A Dp2.cpp15 template<class T, class A> struct vector { /* ... */ }; struct in namespace:StdExample
19 template<class T> using Vec = vector<T, Alloc<T>>;
27 void process(vector<T, Alloc<T>>& w) // expected-error {{redefinition of 'process'}}
38 g(v); // OK: TT = vector
42 // v's type is same as vector<int, Alloc<int>>.
43 using VTest = vector<int, Alloc<int>>;
/external/clang/test/SemaTemplate/
H A Dqualified-names-diag.cpp4 template<typename T> class vector { }; // expected-note{{candidate}} class in namespace:std
13 std::vector<INT> v1;
14 vector<Real> v2;
/external/javassist/sample/vector/
H A DSample2.java1 package sample.vector;
H A DSample.java1 package sample.vector;
/external/webrtc/src/common_audio/signal_processing/
H A Dmin_max_operations_neon.c17 // Maximum absolute value of word16 vector.
18 WebRtc_Word16 WebRtcSpl_MaxAbsValueW16(const WebRtc_Word16* vector, argument
28 __asm__("vld1.16 {d26, d27}, [%0]" : : "r"(&vector[i]) : "q13");
38 abs_val = WEBRTC_SPL_ABS_W32((vector[i]));
H A Denergy.c20 WebRtc_Word32 WebRtcSpl_Energy(WebRtc_Word16* vector, int vector_length, int* scale_factor) argument
24 int scaling = WebRtcSpl_GetScalingSquare(vector, vector_length, vector_length);
26 WebRtc_Word16 *vectorptr = vector;
H A Drandomization_functions.c109 WebRtc_Word16 WebRtcSpl_RandUArray(WebRtc_Word16* vector, argument
116 vector[i] = WebRtcSpl_RandU(seed);
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Denergy.c20 int32_t WebRtcSpl_Energy(int16_t* vector, int vector_length, int* scale_factor) argument
24 int scaling = WebRtcSpl_GetScalingSquare(vector, vector_length, vector_length);
26 int16_t *vectorptr = vector;
H A Drandomization_functions.c107 int16_t WebRtcSpl_RandUArray(int16_t* vector, argument
112 vector[i] = WebRtcSpl_RandU(seed);
/external/clang/test/CodeGenCXX/
H A Dmangle-alias-template.cpp5 template<typename T, typename A = Alloc<T>> struct vector {}; struct
7 template<typename T> using Vec = vector<T>;
16 vector<int> VI;
/external/eigen/Eigen/src/Core/
H A DVectorBlock.h19 * \brief Expression of a fixed-size or dynamic-size sub-vector
21 * \param VectorType the type of the object in which we are taking a sub-vector
22 * \param Size size of the sub-vector we are taking at compile time (optional)
24 * This class represents an expression of either a fixed-size or dynamic-size sub-vector.
28 * However, if you want to directly maniputate sub-vector expressions,
75 inline VectorBlock(VectorType& vector, Index start, Index size) argument
76 : Base(vector,
85 inline VectorBlock(VectorType& vector, Index start) argument
86 : Base(vector, IsColVector ? start : 0, IsColVector ? 0 : start)
/external/openfst/src/script/
H A Dreplace.cc24 void Replace(const vector<pair<int64, const FstClass *> > &tuples, argument
/external/srec/srec/clib/
H A Dmatx_ops.h23 imeldata *vector, int dimr, int dimc);
26 imeldata *vector, int dimr, int dimc)
32 ASSERT(vector);
34 ASSERT(outvec != vector);
39 sum += matrix[ii][jj] * vector[jj];
25 matrix_fixed_multiply_frame(imeldata *outvec, imeldata **matrix, imeldata *vector, int dimr, int dimc) argument
/external/stlport/test/unit/
H A Dbsearch_test.cpp32 int vector[100]; local
34 vector[i] = i;
35 CPPUNIT_ASSERT(binary_search(vector, vector + 100, 42));
/external/aac/libFDK/src/arm/
H A Dscale_arm.cpp99 FIXP_DBL *vector,
108 FIXP_DBL *mySpec = vector;
98 scaleValuesWithFactor( FIXP_DBL *vector, FIXP_DBL factor, INT len, INT scalefactor ) argument
/external/chromium_org/base/
H A Dstl_util_unittest.cc54 std::vector<int> vector; local
55 vector.push_back(1);
56 vector.push_back(1);
57 vector.push_back(4);
58 vector.push_back(64);
59 vector.push_back(12432);
60 EXPECT_TRUE(STLIsSorted(vector));
61 vector.back() = 1;
62 EXPECT_FALSE(STLIsSorted(vector));
[all...]

Completed in 588 milliseconds

1234567891011>>