Home
last modified time | relevance | path

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

12345678910>>...350

/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 …]
/external/swiftshader/third_party/marl/src/
Dcontainers_test.cpp27 marl::containers::vector<std::string, 4> vector(allocator); in TEST_F() local
28 ASSERT_EQ(vector.size(), size_t(0)); in TEST_F()
32 marl::containers::vector<std::string, 4> vector(allocator); in TEST_F() local
33 vector.resize(4); in TEST_F()
34 vector[0] = "A"; in TEST_F()
35 vector[1] = "B"; in TEST_F()
36 vector[2] = "C"; in TEST_F()
37 vector[3] = "D"; in TEST_F()
39 ASSERT_EQ(vector[0], "A"); in TEST_F()
40 ASSERT_EQ(vector[1], "B"); in TEST_F()
[all …]
/external/libaom/libaom/third_party/vector/
Dvector.c34 static bool _vector_should_grow(Vector *vector) { in _vector_should_grow() argument
35 assert(vector->size <= vector->capacity); in _vector_should_grow()
36 return vector->size == vector->capacity; in _vector_should_grow()
39 static bool _vector_should_shrink(Vector *vector) { in _vector_should_shrink() argument
40 assert(vector->size <= vector->capacity); in _vector_should_shrink()
41 return vector->size == vector->capacity * VECTOR_SHRINK_THRESHOLD; in _vector_should_shrink()
44 static void *_vector_offset(Vector *vector, size_t index) { in _vector_offset() argument
46 return (unsigned char *)vector->data + (index * vector->element_size); in _vector_offset()
49 static const void *_vector_const_offset(const Vector *vector, size_t index) { in _vector_const_offset() argument
51 return (unsigned char *)vector->data + (index * vector->element_size); in _vector_const_offset()
[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/mesa3d/src/util/
Du_vector.c38 u_vector_init(struct u_vector *vector, uint32_t element_size, uint32_t size) in u_vector_init() argument
43 vector->head = 0; in u_vector_init()
44 vector->tail = 0; in u_vector_init()
45 vector->element_size = element_size; in u_vector_init()
46 vector->size = size; in u_vector_init()
47 vector->data = malloc(size); in u_vector_init()
49 return vector->data != NULL; in u_vector_init()
53 u_vector_add(struct u_vector *vector) in u_vector_add() argument
58 if (vector->head - vector->tail == vector->size) { in u_vector_add()
59 size = vector->size * 2; in u_vector_add()
[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/angle/third_party/glslang/src/Test/baseResults/
Dhlsl.wavequad.comp.out7 0:13 'dti' ( in 3-component vector of uint)
9 0:14 move second child to first child ( temp 4-component vector of uint)
10 0:14 u: direct index for structure ( temp 4-component vector of uint)
11 …{ temp 4-component vector of uint u, temp 4-component vector of int i, temp 4-component vector o…
12 …{ temp 4-component vector of uint u, temp 4-component vector of int i, temp 4-component vector o…
13 …{ temp 4-component vector of uint u, temp 4-component vector of int i, temp 4-component vector o…
17 0:14 'dti' ( in 3-component vector of uint)
22 0:14 subgroupQuadBroadcast ( temp 4-component vector of uint)
23 0:14 u: direct index for structure ( temp 4-component vector of uint)
24 …{ temp 4-component vector of uint u, temp 4-component vector of int i, temp 4-component vector o…
[all …]
Dglsl.460.subgroup.rcall.out108 0:4 Function Definition: undeclared_errors(vf4; ( global 4-component vector of float)
110 0:4 'f4' ( in 4-component vector of float)
130 0:20 'f4' ( in 4-component vector of float)
131 0:22 'gl_SubgroupEqMask' ( in 4-component vector of uint SubgroupEqMask)
132 0:23 'gl_SubgroupGeMask' ( in 4-component vector of uint SubgroupGeMask)
133 0:24 'gl_SubgroupGtMask' ( in 4-component vector of uint SubgroupGtMask)
134 0:25 'gl_SubgroupLeMask' ( in 4-component vector of uint SubgroupLeMask)
135 0:26 'gl_SubgroupLtMask' ( in 4-component vector of uint SubgroupLtMask)
136 0:27 subgroupBroadcast ( global 4-component vector of float)
137 0:27 'f4' ( in 4-component vector of float)
[all …]
Dglsl.450.subgroup.frag.out109 0:3 Function Definition: undeclared_errors(vf4; ( global 4-component vector of float)
111 0:3 'f4' ( in 4-component vector of float)
131 0:19 'f4' ( in 4-component vector of float)
132 0:21 'gl_SubgroupEqMask' ( flat in 4-component vector of uint SubgroupEqMask)
133 0:22 'gl_SubgroupGeMask' ( flat in 4-component vector of uint SubgroupGeMask)
134 0:23 'gl_SubgroupGtMask' ( flat in 4-component vector of uint SubgroupGtMask)
135 0:24 'gl_SubgroupLeMask' ( flat in 4-component vector of uint SubgroupLeMask)
136 0:25 'gl_SubgroupLtMask' ( flat in 4-component vector of uint SubgroupLtMask)
137 0:26 subgroupBroadcast ( global 4-component vector of float)
138 0:26 'f4' ( in 4-component vector of float)
[all …]
DnewTexture.frag.out8 0:38 move second child to first child ( temp 4-component vector of float)
9 0:38 'v' ( temp 4-component vector of float)
10 0:38 texture ( global 4-component vector of float)
12 0:38 'c2D' ( smooth in 2-component vector of float)
13 0:39 add second child into first child ( temp 4-component vector of float)
14 0:39 'v' ( temp 4-component vector of float)
15 0:39 textureProj ( global 4-component vector of float)
17 0:39 'c4D' ( smooth in 4-component vector of float)
18 0:40 add second child into first child ( temp 4-component vector of float)
19 0:40 'v' ( temp 4-component vector of float)
[all …]
Dhlsl.waveprefix.comp.out7 0:13 'dti' ( in 3-component vector of uint)
9 0:14 move second child to first child ( temp 4-component vector of uint)
10 0:14 u: direct index for structure ( temp 4-component vector of uint)
11 …{ temp 4-component vector of uint u, temp 4-component vector of int i, temp 4-component vector o…
12 …{ temp 4-component vector of uint u, temp 4-component vector of int i, temp 4-component vector o…
13 …{ temp 4-component vector of uint u, temp 4-component vector of int i, temp 4-component vector o…
17 0:14 'dti' ( in 3-component vector of uint)
22 0:14 subgroupInclusiveAdd ( temp 4-component vector of uint)
23 0:14 u: direct index for structure ( temp 4-component vector of uint)
24 …{ temp 4-component vector of uint u, temp 4-component vector of int i, temp 4-component vector o…
[all …]
D300BuiltIns.frag.out15 0:29 move second child to first child ( temp mediump 3-component vector of float)
16 0:29 'v' ( temp mediump 3-component vector of float)
17 0:29 mix ( global mediump 3-component vector of float)
18 0:29 'x' ( global mediump 3-component vector of float)
19 0:29 'y' ( global mediump 3-component vector of float)
20 0:29 'bv' ( global 3-component vector of bool)
22 0:30 move second child to first child ( temp mediump 4-component vector of int)
23 0:30 'iv10' ( temp mediump 4-component vector of int)
24 0:30 Absolute value ( global mediump 4-component vector of int)
25 0:30 'iv4a' ( global mediump 4-component vector of int)
[all …]
/external/deqp-deps/glslang/Test/baseResults/
Dhlsl.wavequad.comp.out7 0:13 'dti' ( in 3-component vector of uint)
9 0:14 move second child to first child ( temp 4-component vector of uint)
10 0:14 u: direct index for structure ( temp 4-component vector of uint)
11 …{ temp 4-component vector of uint u, temp 4-component vector of int i, temp 4-component vector o…
12 …{ temp 4-component vector of uint u, temp 4-component vector of int i, temp 4-component vector o…
13 …{ temp 4-component vector of uint u, temp 4-component vector of int i, temp 4-component vector o…
17 0:14 'dti' ( in 3-component vector of uint)
22 0:14 subgroupQuadBroadcast ( temp 4-component vector of uint)
23 0:14 u: direct index for structure ( temp 4-component vector of uint)
24 …{ temp 4-component vector of uint u, temp 4-component vector of int i, temp 4-component vector o…
[all …]
Dglsl.460.subgroup.rcall.out108 0:4 Function Definition: undeclared_errors(vf4; ( global 4-component vector of float)
110 0:4 'f4' ( in 4-component vector of float)
130 0:20 'f4' ( in 4-component vector of float)
131 0:22 'gl_SubgroupEqMask' ( in 4-component vector of uint SubgroupEqMask)
132 0:23 'gl_SubgroupGeMask' ( in 4-component vector of uint SubgroupGeMask)
133 0:24 'gl_SubgroupGtMask' ( in 4-component vector of uint SubgroupGtMask)
134 0:25 'gl_SubgroupLeMask' ( in 4-component vector of uint SubgroupLeMask)
135 0:26 'gl_SubgroupLtMask' ( in 4-component vector of uint SubgroupLtMask)
136 0:27 subgroupBroadcast ( global 4-component vector of float)
137 0:27 'f4' ( in 4-component vector of float)
[all …]
Dglsl.450.subgroup.frag.out109 0:3 Function Definition: undeclared_errors(vf4; ( global 4-component vector of float)
111 0:3 'f4' ( in 4-component vector of float)
131 0:19 'f4' ( in 4-component vector of float)
132 0:21 'gl_SubgroupEqMask' ( flat in 4-component vector of uint SubgroupEqMask)
133 0:22 'gl_SubgroupGeMask' ( flat in 4-component vector of uint SubgroupGeMask)
134 0:23 'gl_SubgroupGtMask' ( flat in 4-component vector of uint SubgroupGtMask)
135 0:24 'gl_SubgroupLeMask' ( flat in 4-component vector of uint SubgroupLeMask)
136 0:25 'gl_SubgroupLtMask' ( flat in 4-component vector of uint SubgroupLtMask)
137 0:26 subgroupBroadcast ( global 4-component vector of float)
138 0:26 'f4' ( in 4-component vector of float)
[all …]
DnewTexture.frag.out8 0:38 move second child to first child ( temp 4-component vector of float)
9 0:38 'v' ( temp 4-component vector of float)
10 0:38 texture ( global 4-component vector of float)
12 0:38 'c2D' ( smooth in 2-component vector of float)
13 0:39 add second child into first child ( temp 4-component vector of float)
14 0:39 'v' ( temp 4-component vector of float)
15 0:39 textureProj ( global 4-component vector of float)
17 0:39 'c4D' ( smooth in 4-component vector of float)
18 0:40 add second child into first child ( temp 4-component vector of float)
19 0:40 'v' ( temp 4-component vector of float)
[all …]
Dhlsl.waveprefix.comp.out7 0:13 'dti' ( in 3-component vector of uint)
9 0:14 move second child to first child ( temp 4-component vector of uint)
10 0:14 u: direct index for structure ( temp 4-component vector of uint)
11 …{ temp 4-component vector of uint u, temp 4-component vector of int i, temp 4-component vector o…
12 …{ temp 4-component vector of uint u, temp 4-component vector of int i, temp 4-component vector o…
13 …{ temp 4-component vector of uint u, temp 4-component vector of int i, temp 4-component vector o…
17 0:14 'dti' ( in 3-component vector of uint)
22 0:14 subgroupInclusiveAdd ( temp 4-component vector of uint)
23 0:14 u: direct index for structure ( temp 4-component vector of uint)
24 …{ temp 4-component vector of uint u, temp 4-component vector of int i, temp 4-component vector o…
[all …]
D300BuiltIns.frag.out15 0:29 move second child to first child ( temp mediump 3-component vector of float)
16 0:29 'v' ( temp mediump 3-component vector of float)
17 0:29 mix ( global mediump 3-component vector of float)
18 0:29 'x' ( global mediump 3-component vector of float)
19 0:29 'y' ( global mediump 3-component vector of float)
20 0:29 'bv' ( global 3-component vector of bool)
22 0:30 move second child to first child ( temp mediump 4-component vector of int)
23 0:30 'iv10' ( temp mediump 4-component vector of int)
24 0:30 Absolute value ( global mediump 4-component vector of int)
25 0:30 'iv4a' ( global mediump 4-component vector of int)
[all …]
Dtexture.frag.out36 0:24 move second child to first child ( temp 3-component vector of float)
37 0:24 'coords3D' ( temp 3-component vector of float)
43 0:25 move second child to first child ( temp 4-component vector of float)
44 0:25 'coords4D' ( temp 4-component vector of float)
51 0:26 move second child to first child ( temp 4-component vector of float)
52 0:26 'color' ( temp 4-component vector of float)
58 0:28 add second child into first child ( temp 4-component vector of float)
59 0:28 'color' ( temp 4-component vector of float)
60 0:28 texture ( global 4-component vector of float)
63 0:29 add second child into first child ( temp 4-component vector of float)
[all …]
/external/tensorflow/tensorflow/lite/tools/optimize/sparsity/
Dformat_converter_test.cc26 const std::vector<int> dense_values = {6, 0, 9, 8, 0, 0, 0, 0, 5, 0, 0, 7}; in TEST()
27 const std::vector<int> dense_shape = {3, 4}; in TEST()
28 const std::vector<int> traversal_order = {0, 1}; in TEST()
29 const std::vector<TfLiteDimensionType> format = {kTfLiteDimDense, in TEST()
35 const std::vector<int> dm0 = {3}; in TEST()
36 const std::vector<int> dm1 = {4}; in TEST()
41 const std::vector<int> expected_data = {6, 0, 9, 8, 0, 0, 0, 0, 5, 0, 0, 7}; in TEST()
50 const std::vector<int> dense_values = {6, 0, 9, 8, 0, 0, 0, 0, 5, 0, 0, 7}; in TEST()
51 const std::vector<int> dense_shape = {3, 4}; in TEST()
52 const std::vector<int> traversal_order = {0, 1}; in TEST()
[all …]

12345678910>>...350