Home
last modified time | relevance | path

Searched refs:vector (Results 1 – 25 of 5315) sorted by relevance

12345678910>>...213

/external/clang/lib/Headers/
Dvecintrin.h60 vec_extract(vector signed char __vec, int __index) { in vec_extract()
65 vec_extract(vector bool char __vec, int __index) { in vec_extract()
70 vec_extract(vector unsigned char __vec, int __index) { in vec_extract()
75 vec_extract(vector signed short __vec, int __index) { in vec_extract()
80 vec_extract(vector bool short __vec, int __index) { in vec_extract()
85 vec_extract(vector unsigned short __vec, int __index) { in vec_extract()
90 vec_extract(vector signed int __vec, int __index) { in vec_extract()
95 vec_extract(vector bool int __vec, int __index) { in vec_extract()
100 vec_extract(vector unsigned int __vec, int __index) { in vec_extract()
105 vec_extract(vector signed long long __vec, int __index) { in vec_extract()
[all …]
Daltivec.h39 static __inline__ vector signed char __ATTRS_o_ai vec_perm(
40 vector signed char __a, vector signed char __b, vector unsigned char __c);
42 static __inline__ vector unsigned char __ATTRS_o_ai
43 vec_perm(vector unsigned char __a, vector unsigned char __b,
44 vector unsigned char __c);
46 static __inline__ vector bool char __ATTRS_o_ai
47 vec_perm(vector bool char __a, vector bool char __b, vector unsigned char __c);
49 static __inline__ vector short __ATTRS_o_ai vec_perm(vector signed short __a,
50 vector signed short __b,
51 vector unsigned char __c);
[all …]
/external/clang/test/CodeGen/
Dbuiltins-ppc-crypto.c28 vector unsigned char test_vpmsumb(void) in test_vpmsumb()
30 vector unsigned char a = B_INIT1 in test_vpmsumb()
31 vector unsigned char b = B_INIT2 in test_vpmsumb()
37 vector unsigned short test_vpmsumh(void) in test_vpmsumh()
39 vector unsigned short a = H_INIT1 in test_vpmsumh()
40 vector unsigned short b = H_INIT2 in test_vpmsumh()
46 vector unsigned int test_vpmsumw(void) in test_vpmsumw()
48 vector unsigned int a = W_INIT1 in test_vpmsumw()
49 vector unsigned int b = W_INIT2 in test_vpmsumw()
55 vector unsigned long long test_vpmsumd(void) in test_vpmsumd()
[all …]
Daltivec.c5 vector int test0 = (vector int)(1); // CHECK: @test0 = global <4 x i32> <i32 1, i32 1, i32 1,…
6 vector float test1 = (vector float)(1.0); // CHECK: @test1 = global <4 x float> <float 1.000000e+{{…
9 vector char v1 = (vector char)((vector int)(1, 2, 3, 4));
11 vector char v2 = (vector char)((vector float)(1.0f, 2.0f, 3.0f, 4.0f));
13 vector char v3 = (vector char)((vector int)('a', 'b', 'c', 'd'));
15 vector int v4 = (vector char){1, 2, 3, 4};
19 vector int vi; in test2()
20 vector float vf; in test2()
21 vi = (vector int)(1); // CHECK: <i32 1, i32 1, i32 1, i32 1> in test2()
22 …vf = (vector float)(1.0); // CHECK: <float 1.000000e+{{0+}}, float 1.000000e+{{0+}}, float… in test2()
[all …]
/external/clang/include/clang/Basic/
DBuiltinsSystemZ.def36 TARGET_BUILTIN(__builtin_s390_lcbb, "UivC*Ii", "nc", "vector")
37 TARGET_BUILTIN(__builtin_s390_vlbb, "V16ScvC*Ii", "", "vector")
38 TARGET_BUILTIN(__builtin_s390_vll, "V16ScUivC*", "", "vector")
39 TARGET_BUILTIN(__builtin_s390_vstl, "vV16ScUiv*", "", "vector")
40 TARGET_BUILTIN(__builtin_s390_vperm, "V16UcV16UcV16UcV16Uc", "nc", "vector")
41 TARGET_BUILTIN(__builtin_s390_vpdi, "V2ULLiV2ULLiV2ULLiIi", "nc", "vector")
42 TARGET_BUILTIN(__builtin_s390_vpksh, "V16ScV8SsV8Ss", "nc", "vector")
43 TARGET_BUILTIN(__builtin_s390_vpkshs, "V16ScV8SsV8Ssi*", "nc", "vector")
44 TARGET_BUILTIN(__builtin_s390_vpksf, "V8SsV4SiV4Si", "nc", "vector")
45 TARGET_BUILTIN(__builtin_s390_vpksfs, "V8SsV4SiV4Sii*", "nc", "vector")
[all …]
/external/clang/test/Parser/
Daltivec.c30 vector char v_c;
31 vector signed char v_sc;
32 vector unsigned char v_uc;
33 vector short v_s;
34 vector signed short v_ss;
35 vector unsigned short v_us;
36 vector short int v_si;
37 vector signed short int v_ssi;
38 vector unsigned short int v_usi;
39 vector int v_i;
[all …]
Dcxx-altivec.cpp31 vector char v_c;
32 vector signed char v_sc;
33 vector unsigned char v_uc;
34 vector short v_s;
35 vector signed short v_ss;
36 vector unsigned short v_us;
37 vector short int v_si;
38 vector signed short int v_ssi;
39 vector unsigned short int v_usi;
40 vector int v_i;
[all …]
/external/compiler-rt/test/builtins/Unit/
Dcomparedf2_test.c37 int test__cmpdf2(const struct TestVector *vector) { in test__cmpdf2() argument
39 if (__eqdf2(vector->a, vector->b) != vector->eqReference) { in test__cmpdf2()
41 vector->a, vector->b, in test__cmpdf2()
42 __eqdf2(vector->a, vector->b), in test__cmpdf2()
43 vector->eqReference); in test__cmpdf2()
47 if (__gedf2(vector->a, vector->b) != vector->geReference) { in test__cmpdf2()
49 vector->a, vector->b, in test__cmpdf2()
50 __gedf2(vector->a, vector->b), in test__cmpdf2()
51 vector->geReference); in test__cmpdf2()
55 if (__gtdf2(vector->a, vector->b) != vector->gtReference) { in test__cmpdf2()
[all …]
Dcomparesf2_test.c37 int test__cmpsf2(const struct TestVector *vector) { in test__cmpsf2() argument
39 if (__eqsf2(vector->a, vector->b) != vector->eqReference) { in test__cmpsf2()
41 vector->a, vector->b, in test__cmpsf2()
42 __eqsf2(vector->a, vector->b), in test__cmpsf2()
43 vector->eqReference); in test__cmpsf2()
47 if (__gesf2(vector->a, vector->b) != vector->geReference) { in test__cmpsf2()
49 vector->a, vector->b, in test__cmpsf2()
50 __gesf2(vector->a, vector->b), in test__cmpsf2()
51 vector->geReference); in test__cmpsf2()
55 if (__gtsf2(vector->a, vector->b) != vector->gtReference) { in test__cmpsf2()
[all …]
/external/aac/libFDK/src/
Dscale.cpp120 void scaleValues(FIXP_SGL *vector, /*!< Vector */ in scaleValues() argument
134 *(vector++) <<= scalefactor; in scaleValues()
138 *(vector++) <<= scalefactor; in scaleValues()
139 *(vector++) <<= scalefactor; in scaleValues()
140 *(vector++) <<= scalefactor; in scaleValues()
141 *(vector++) <<= scalefactor; in scaleValues()
147 *(vector++) >>= negScalefactor; in scaleValues()
151 *(vector++) >>= negScalefactor; in scaleValues()
152 *(vector++) >>= negScalefactor; in scaleValues()
153 *(vector++) >>= negScalefactor; in scaleValues()
[all …]
/external/zopfli/src/zopflipng/lodepng/
Dlodepng_util.h45 LodePNGInfo getPNGHeaderInfo(const std::vector<unsigned char>& png);
51 unsigned getChunkInfo(std::vector<std::string>& names, std::vector<size_t>& sizes,
52 const std::vector<unsigned char>& png);
61 unsigned getChunks(std::vector<std::string> names[3],
62 std::vector<std::vector<unsigned char> > chunks[3],
63 const std::vector<unsigned char>& png);
73 unsigned insertChunks(std::vector<unsigned char>& png,
74 const std::vector<std::vector<unsigned char> > chunks[3]);
87 unsigned getFilterTypes(std::vector<unsigned char>& filterTypes, const std::vector<unsigned char>& …
107 unsigned getFilterTypesInterlaced(std::vector<std::vector<unsigned char> >& filterTypes,
[all …]
/external/llvm/test/MC/SystemZ/
Dinsn-bad-zEC12.s5 #CHECK: error: {{(instruction requires: vector)?}}
91 #CHECK: error: {{(instruction requires: vector)?}}
93 #CHECK: error: {{(instruction requires: vector)?}}
95 #CHECK: error: {{(instruction requires: vector)?}}
97 #CHECK: error: {{(instruction requires: vector)?}}
99 #CHECK: error: {{(instruction requires: vector)?}}
108 #CHECK: error: {{(instruction requires: vector)?}}
110 #CHECK: error: {{(instruction requires: vector)?}}
112 #CHECK: error: {{(instruction requires: vector)?}}
114 #CHECK: error: {{(instruction requires: vector)?}}
[all …]
/external/arm-neon-tests/
Dref_vclz.c45 INSN##Q##_##T2##W(VECT_VAR(vector, T1, W, N)); \ in FNNAME()
55 DECL_VARIABLE(vector, int, 8, 8); in FNNAME()
56 DECL_VARIABLE(vector, int, 16, 4); in FNNAME()
57 DECL_VARIABLE(vector, int, 32, 2); in FNNAME()
58 DECL_VARIABLE(vector, uint, 8, 8); in FNNAME()
59 DECL_VARIABLE(vector, uint, 16, 4); in FNNAME()
60 DECL_VARIABLE(vector, uint, 32, 2); in FNNAME()
61 DECL_VARIABLE(vector, int, 8, 16); in FNNAME()
62 DECL_VARIABLE(vector, int, 16, 8); in FNNAME()
63 DECL_VARIABLE(vector, int, 32, 4); in FNNAME()
[all …]
Dref_vqrshl.c46 INSN##Q##_##T2##W(VECT_VAR(vector, T1, W, N), \ in FNNAME()
63 DECL_VARIABLE_ALL_VARIANTS(vector); in FNNAME()
71 VDUP(vector, , int, s, 8, 8, 0); in FNNAME()
72 VDUP(vector, , int, s, 16, 4, 0); in FNNAME()
73 VDUP(vector, , int, s, 32, 2, 0); in FNNAME()
74 VDUP(vector, , int, s, 64, 1, 0); in FNNAME()
75 VDUP(vector, , uint, u, 8, 8, 0); in FNNAME()
76 VDUP(vector, , uint, u, 16, 4, 0); in FNNAME()
77 VDUP(vector, , uint, u, 32, 2, 0); in FNNAME()
78 VDUP(vector, , uint, u, 64, 1, 0); in FNNAME()
[all …]
Dref_vmvn.c45 INSN##Q##_##T2##W(VECT_VAR(vector, T1, W, N)); \ in FNNAME()
55 DECL_VARIABLE(vector, int, 8, 8); in FNNAME()
56 DECL_VARIABLE(vector, int, 16, 4); in FNNAME()
57 DECL_VARIABLE(vector, int, 32, 2); in FNNAME()
58 DECL_VARIABLE(vector, uint, 8, 8); in FNNAME()
59 DECL_VARIABLE(vector, uint, 16, 4); in FNNAME()
60 DECL_VARIABLE(vector, uint, 32, 2); in FNNAME()
61 DECL_VARIABLE(vector, poly, 8, 8); in FNNAME()
62 DECL_VARIABLE(vector, int, 8, 16); in FNNAME()
63 DECL_VARIABLE(vector, int, 16, 8); in FNNAME()
[all …]
Dref_vrshrn_n.c40 vrshrn_n_##T2##W(VECT_VAR(vector, T1, W, N), \ in exec_vrshrn_n()
48 DECL_VARIABLE(vector, int, 16, 8); in exec_vrshrn_n()
49 DECL_VARIABLE(vector, int, 32, 4); in exec_vrshrn_n()
50 DECL_VARIABLE(vector, int, 64, 2); in exec_vrshrn_n()
51 DECL_VARIABLE(vector, uint, 16, 8); in exec_vrshrn_n()
52 DECL_VARIABLE(vector, uint, 32, 4); in exec_vrshrn_n()
53 DECL_VARIABLE(vector, uint, 64, 2); in exec_vrshrn_n()
65 VDUP(vector, q, int, s, 16, 8, 0); in exec_vrshrn_n()
66 VDUP(vector, q, int, s, 32, 4, 0); in exec_vrshrn_n()
67 VDUP(vector, q, int, s, 64, 2, 0); in exec_vrshrn_n()
[all …]
Dref_vpaddl.c45 INSN##Q##_##T2##W(VECT_VAR(vector, T1, W, N)); \ in FNNAME()
56 DECL_VARIABLE(vector, int, 8, 8); in FNNAME()
57 DECL_VARIABLE(vector, int, 16, 4); in FNNAME()
58 DECL_VARIABLE(vector, int, 32, 2); in FNNAME()
59 DECL_VARIABLE(vector, uint, 8, 8); in FNNAME()
60 DECL_VARIABLE(vector, uint, 16, 4); in FNNAME()
61 DECL_VARIABLE(vector, uint, 32, 2); in FNNAME()
62 DECL_VARIABLE(vector, int, 8, 16); in FNNAME()
63 DECL_VARIABLE(vector, int, 16, 8); in FNNAME()
64 DECL_VARIABLE(vector, int, 32, 4); in FNNAME()
[all …]
/external/clang/test/Misc/
Ddiag-template-diffing-color.cpp21 template<typename> class vector {}; class
23 void set15(vector<const vector<int> >) {} in set15()
25 set15(vector<const vector<const int> >()); in test15()
33 void set16(vector<vector<int> >) {} in set16()
35 set16(vector<const vector<int> >()); in test16()
42 void set17(vector<const vector<int> >) {} in set17()
44 set17(vector<vector<int> >()); in test17()
51 void set18(vector<volatile vector<int> >) {} in set18()
53 set18(vector<const vector<int> >()); in test18()
61 void set19(vector<const volatile vector<int> >) {} in set19()
[all …]
/external/llvm/include/llvm/CodeGen/
DValueTypes.td36 def v2i1 : ValueType<2 , 13>; // 2 x i1 vector value
37 def v4i1 : ValueType<4 , 14>; // 4 x i1 vector value
38 def v8i1 : ValueType<8 , 15>; // 8 x i1 vector value
39 def v16i1 : ValueType<16, 16>; // 16 x i1 vector value
40 def v32i1 : ValueType<32 , 17>; // 32 x i1 vector value
41 def v64i1 : ValueType<64 , 18>; // 64 x i1 vector value
42 def v512i1 : ValueType<512, 19>; // 512 x i1 vector value
43 def v1024i1: ValueType<1024,20>; //1024 x i1 vector value
45 def v1i8 : ValueType<16, 21>; // 1 x i8 vector value
46 def v2i8 : ValueType<16 , 22>; // 2 x i8 vector value
[all …]
/external/valgrind/none/tests/ppc32/
DtestVMX.c281 vector signed char v;
287 vector unsigned char v;
293 vector bool char v;
299 vector signed short v;
305 vector unsigned short v;
311 vector bool short v;
317 vector signed int v;
323 vector unsigned int v;
329 vector bool int v;
336 vector float v;
[all …]
/external/protobuf/src/google/protobuf/util/
Dmessage_differencer.h224 const vector<SpecificField>& field_path) = 0;
230 const vector<SpecificField>& field_path) = 0;
236 const vector<SpecificField>& field_path) = 0;
246 const vector<SpecificField>& field_path) { } in ReportMoved()
255 const vector<SpecificField>& field_path) { } in ReportMatched()
279 const vector<SpecificField>& field_path) { } in ReportIgnored()
286 const vector<SpecificField>& field_path) {} in ReportUnknownFieldIgnored()
301 const vector<SpecificField>& parent_fields) const { in IsMatch()
326 const vector<SpecificField>& parent_fields) = 0;
334 const vector<SpecificField>& parent_fields) { in IsUnknownFieldIgnored()
[all …]
/external/clang/test/CodeGenCXX/
Dbuiltins-systemz-zvector.cpp13 void testInts(vector int VI) { in testInts()
14 constexpr vector int CI1 = (vector int)0LL; in testInts()
19 constexpr vector int CI2 = (vector int)char(0); in testInts()
23 constexpr vector int CF1 = (vector int)0.0; in testInts()
27 constexpr vector int CF2 = (vector int)0.0f; in testInts()
33 void testFloats(vector double VD) { in testFloats()
34 constexpr vector double CI1 = (vector double)0LL; in testFloats()
39 constexpr vector double CI2 = (vector double)char(0); in testFloats()
43 constexpr vector double CF1 = (vector double)0.0; in testFloats()
47 constexpr vector double CF2 = (vector double)0.0f; in testFloats()
/external/antlr/antlr-3.4/runtime/C/src/
Dantlr3collections.c90 static void ANTLR3_CDECL antlr3VectorFree (pANTLR3_VECTOR vector);
91 static void antlr3VectorDel (pANTLR3_VECTOR vector, ANTLR3_UINT32 entry);
92 static void * antlr3VectorGet (pANTLR3_VECTOR vector, ANTLR3_UINT32 entry);
93 static void * antrl3VectorRemove (pANTLR3_VECTOR vector, ANTLR3_UINT32 entry);
94 static void antlr3VectorClear (pANTLR3_VECTOR vector);
95 static ANTLR3_UINT32 antlr3VectorAdd (pANTLR3_VECTOR vector, void * element, void (ANTLR3_CDECL *…
96 static ANTLR3_UINT32 antlr3VectorSet (pANTLR3_VECTOR vector, ANTLR3_UINT32 entry, void * element,…
97 static ANTLR3_UINT32 antlr3VectorSize (pANTLR3_VECTOR vector);
98 static ANTLR3_BOOLEAN antlr3VectorSwap (pANTLR3_VECTOR vector, ANTLR3_UINT32 entry1, ANTLR3_UI…
103 static void returnVector (pANTLR3_VECTOR_FACTORY factory, pANTLR3_VECTOR vector);
[all …]
/external/webrtc/webrtc/common_audio/signal_processing/
Dmin_max_operations.c37 int16_t WebRtcSpl_MaxAbsValueW16C(const int16_t* vector, size_t length) { in WebRtcSpl_MaxAbsValueW16C() argument
44 absolute = abs((int)vector[i]); in WebRtcSpl_MaxAbsValueW16C()
60 int32_t WebRtcSpl_MaxAbsValueW32C(const int32_t* vector, size_t length) { in WebRtcSpl_MaxAbsValueW32C() argument
70 absolute = abs((int)vector[i]); in WebRtcSpl_MaxAbsValueW32C()
82 int16_t WebRtcSpl_MaxValueW16C(const int16_t* vector, size_t length) { in WebRtcSpl_MaxValueW16C() argument
89 if (vector[i] > maximum) in WebRtcSpl_MaxValueW16C()
90 maximum = vector[i]; in WebRtcSpl_MaxValueW16C()
96 int32_t WebRtcSpl_MaxValueW32C(const int32_t* vector, size_t length) { in WebRtcSpl_MaxValueW32C() argument
103 if (vector[i] > maximum) in WebRtcSpl_MaxValueW32C()
104 maximum = vector[i]; in WebRtcSpl_MaxValueW32C()
[all …]
/external/clang/test/SemaCXX/
Daltivec.cpp5 void test_vec_step(vector short arg1) { in test_vec_step()
6 vector bool char vbc; in test_vec_step()
7 vector signed char vsc; in test_vec_step()
8 vector unsigned char vuc; in test_vec_step()
9 vector bool short vbs; in test_vec_step()
10 vector short vs; in test_vec_step()
11 vector unsigned short vus; in test_vec_step()
12 vector pixel vp; in test_vec_step()
13 vector bool int vbi; in test_vec_step()
14 vector int vi; in test_vec_step()
[all …]

12345678910>>...213