Home
last modified time | relevance | path

Searched refs:arr1 (Results 1 – 25 of 123) sorted by relevance

12345

/external/llvm-project/libcxx/test/std/containers/views/span.sub/
Dsubspan.pass.cpp107 int arr1[] = {5,6,7}; variable
168 testRuntimeSpan<Sp, 0, 3>(Sp{arr1}); in main()
169 testRuntimeSpan<Sp, 0, 2>(Sp{arr1}); in main()
170 testRuntimeSpan<Sp, 0, 1>(Sp{arr1}); in main()
171 testRuntimeSpan<Sp, 0, 0>(Sp{arr1}); in main()
173 testRuntimeSpan<Sp, 1, 2>(Sp{arr1}); in main()
174 testRuntimeSpan<Sp, 2, 1>(Sp{arr1}); in main()
175 testRuntimeSpan<Sp, 3, 0>(Sp{arr1}); in main()
181 testRuntimeSpan<Sp, 0, 3>(Sp{arr1}); in main()
182 testRuntimeSpan<Sp, 0, 2>(Sp{arr1}); in main()
[all …]
/external/libcxx/test/std/containers/views/span.sub/
Dsubspan.pass.cpp108 int arr1[] = {5,6,7}; variable
169 testRuntimeSpan<Sp, 0, 3>(Sp{arr1}); in main()
170 testRuntimeSpan<Sp, 0, 2>(Sp{arr1}); in main()
171 testRuntimeSpan<Sp, 0, 1>(Sp{arr1}); in main()
172 testRuntimeSpan<Sp, 0, 0>(Sp{arr1}); in main()
174 testRuntimeSpan<Sp, 1, 2>(Sp{arr1}); in main()
175 testRuntimeSpan<Sp, 2, 1>(Sp{arr1}); in main()
176 testRuntimeSpan<Sp, 3, 0>(Sp{arr1}); in main()
182 testRuntimeSpan<Sp, 0, 3>(Sp{arr1}); in main()
183 testRuntimeSpan<Sp, 0, 2>(Sp{arr1}); in main()
[all …]
/external/llvm-project/libcxx/test/std/containers/sequences/list/list.cons/
Dinput_iterator.pass.cpp88 int arr1[] = {42}; in test_emplacable_concept() local
94 std::list<T> v(It(arr1), It(std::end(arr1))); in test_emplacable_concept()
112 std::list<T> v(It(arr1), It(std::end(arr1))); in test_emplacable_concept()
135 int arr1[] = {42}; in test_emplacable_concept_with_alloc() local
142 std::list<T> v(It(arr1), It(std::end(arr1)), a); in test_emplacable_concept_with_alloc()
161 std::list<T> v(It(arr1), It(std::end(arr1)), a); in test_emplacable_concept_with_alloc()
182 int arr1[] = {42}; in test_ctor_under_alloc() local
189 C v(It(arr1), It(std::end(arr1))); in test_ctor_under_alloc()
201 C v(It(arr1), It(std::end(arr1))); in test_ctor_under_alloc()
213 int arr1[] = {42}; in test_ctor_under_alloc_with_alloc() local
[all …]
/external/libcxx/test/std/containers/sequences/list/list.cons/
Dinput_iterator.pass.cpp88 int arr1[] = {42}; in test_emplacable_concept() local
94 std::list<T> v(It(arr1), It(std::end(arr1))); in test_emplacable_concept()
112 std::list<T> v(It(arr1), It(std::end(arr1))); in test_emplacable_concept()
135 int arr1[] = {42}; in test_emplacable_concept_with_alloc() local
142 std::list<T> v(It(arr1), It(std::end(arr1)), a); in test_emplacable_concept_with_alloc()
161 std::list<T> v(It(arr1), It(std::end(arr1)), a); in test_emplacable_concept_with_alloc()
182 int arr1[] = {42}; in test_ctor_under_alloc() local
189 C v(It(arr1), It(std::end(arr1))); in test_ctor_under_alloc()
201 C v(It(arr1), It(std::end(arr1))); in test_ctor_under_alloc()
213 int arr1[] = {42}; in test_ctor_under_alloc_with_alloc() local
[all …]
/external/llvm/test/CodeGen/X86/
Dlea-opt.ll7 @arr1 = external global [65 x %struct.anon1], align 16
12 …%a = getelementptr inbounds [65 x %struct.anon1], [65 x %struct.anon1]* @arr1, i64 0, i64 %x, i32 0
14 …%b = getelementptr inbounds [65 x %struct.anon1], [65 x %struct.anon1]* @arr1, i64 0, i64 %x, i32 1
17 …%c = getelementptr inbounds [65 x %struct.anon1], [65 x %struct.anon1]* @arr1, i64 0, i64 %x, i32 2
39 ; CHECK: movl arr1([[REG1]],[[REG1]],2), {{.*}}
40 ; CHECK: leaq arr1+4([[REG1]],[[REG1]],2), [[REG2:%[a-z]+]]
41 ; CHECK: subl arr1+4([[REG1]],[[REG1]],2), {{.*}}
42 ; DISABLED: leaq arr1+8([[REG1]],[[REG1]],2), [[REG3:%[a-z]+]]
43 ; CHECK: addl arr1+8([[REG1]],[[REG1]],2), {{.*}}
54 …%a = getelementptr inbounds [65 x %struct.anon1], [65 x %struct.anon1]* @arr1, i64 0, i64 %x, i32 0
[all …]
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/
DStringPoolTest.java55 final String[] arr1 = pool.get(new String[0]); in testGetEmptyArray() local
58 assertEquals(0, arr1.length); in testGetEmptyArray()
59 assertSame(arr1, arr2); in testGetEmptyArray()
64 final String[] arr1 = pool.get(new String[] { new String("JaCoCo") }); in testGetArray() local
67 assertEquals(1, arr1.length); in testGetArray()
68 assertEquals("JaCoCo", arr1[0]); in testGetArray()
69 assertSame(arr1[0], arr2[0]); in testGetArray()
/external/llvm/unittests/ADT/
DHashingTest.cpp136 const int arr1[] = { 1, 2, 3 }; in TEST() local
137 hash_code arr1_hash = hash_combine_range(begin(arr1), end(arr1)); in TEST()
139 EXPECT_EQ(arr1_hash, hash_combine_range(begin(arr1), end(arr1))); in TEST()
141 const std::vector<int> vec(begin(arr1), end(arr1)); in TEST()
144 const std::list<int> list(begin(arr1), end(arr1)); in TEST()
147 const std::deque<int> deque(begin(arr1), end(arr1)); in TEST()
337 const int arr1[] = { i1, i2, i3, i4, i5, i6 }; in TEST() local
338 EXPECT_EQ(hash_combine_range(arr1, arr1 + 1), hash_combine(i1)); in TEST()
339 EXPECT_EQ(hash_combine_range(arr1, arr1 + 2), hash_combine(i1, i2)); in TEST()
340 EXPECT_EQ(hash_combine_range(arr1, arr1 + 3), hash_combine(i1, i2, i3)); in TEST()
[all …]
/external/llvm-project/llvm/unittests/ADT/
DHashingTest.cpp146 const int arr1[] = { 1, 2, 3 }; in TEST() local
147 hash_code arr1_hash = hash_combine_range(begin(arr1), end(arr1)); in TEST()
149 EXPECT_EQ(arr1_hash, hash_combine_range(begin(arr1), end(arr1))); in TEST()
151 const std::vector<int> vec(begin(arr1), end(arr1)); in TEST()
154 const std::list<int> list(begin(arr1), end(arr1)); in TEST()
157 const std::deque<int> deque(begin(arr1), end(arr1)); in TEST()
294 const int arr1[] = { i1, i2, i3, i4, i5, i6 }; in TEST() local
295 EXPECT_EQ(hash_combine_range(arr1, arr1 + 1), hash_combine(i1)); in TEST()
296 EXPECT_EQ(hash_combine_range(arr1, arr1 + 2), hash_combine(i1, i2)); in TEST()
297 EXPECT_EQ(hash_combine_range(arr1, arr1 + 3), hash_combine(i1, i2, i3)); in TEST()
[all …]
/external/llvm-project/llvm/test/Transforms/SLPVectorizer/X86/
Dhorizontal-minmax.ll8 @arr1 = local_unnamed_addr global [32 x float] zeroinitializer, align 16
205 …= load float, float* getelementptr inbounds ([32 x float], [32 x float]* @arr1, i64 0, i64 0), ali…
206 …= load float, float* getelementptr inbounds ([32 x float], [32 x float]* @arr1, i64 0, i64 1), ali…
209 …= load float, float* getelementptr inbounds ([32 x float], [32 x float]* @arr1, i64 0, i64 2), ali…
212 …= load float, float* getelementptr inbounds ([32 x float], [32 x float]* @arr1, i64 0, i64 3), ali…
215 …= load float, float* getelementptr inbounds ([32 x float], [32 x float]* @arr1, i64 0, i64 4), ali…
218 …= load float, float* getelementptr inbounds ([32 x float], [32 x float]* @arr1, i64 0, i64 5), ali…
221 …= load float, float* getelementptr inbounds ([32 x float], [32 x float]* @arr1, i64 0, i64 6), ali…
224 …= load float, float* getelementptr inbounds ([32 x float], [32 x float]* @arr1, i64 0, i64 7), ali…
230 ; THRESH-NEXT: [[TMP2:%.*]] = load <2 x float>, <2 x float>* bitcast ([32 x float]* @arr1 to <2 …
[all …]
/external/libcxx/test/std/containers/sequences/vector/vector.cons/
Dconstruct_iter_iter.pass.cpp81 int arr1[] = {42}; in emplaceable_concept_tests() local
87 std::vector<T> v(It(arr1), It(std::end(arr1))); in emplaceable_concept_tests()
101 std::vector<T> v(It(arr1), It(std::end(arr1))); in emplaceable_concept_tests()
120 int arr1[] = {42}; in test_ctor_under_alloc() local
127 C v(It(arr1), It(std::end(arr1))); in test_ctor_under_alloc()
139 C v(It(arr1), It(std::end(arr1))); in test_ctor_under_alloc()
Dconstruct_iter_iter_alloc.pass.cpp92 int arr1[] = {42}; in emplaceable_concept_tests() local
100 std::vector<T> v(It(arr1), It(std::end(arr1)), a); in emplaceable_concept_tests()
116 std::vector<T> v(It(arr1), It(std::end(arr1)), a); in emplaceable_concept_tests()
133 int arr1[] = {42}; in test_ctor_under_alloc() local
142 C v(It(arr1), It(std::end(arr1)), a); in test_ctor_under_alloc()
156 C v(It(arr1), It(std::end(arr1)), a); in test_ctor_under_alloc()
Dassign_iter_iter.pass.cpp30 int arr1[] = {42}; in test_emplaceable_concept() local
37 v.assign(It(arr1), It(std::end(arr1))); in test_emplaceable_concept()
53 v.assign(It(arr1), It(std::end(arr1))); in test_emplaceable_concept()
/external/llvm-project/libcxx/test/std/containers/sequences/vector/vector.cons/
Dconstruct_iter_iter_alloc.pass.cpp91 int arr1[] = {42}; in emplaceable_concept_tests() local
99 std::vector<T> v(It(arr1), It(std::end(arr1)), a); in emplaceable_concept_tests()
115 std::vector<T> v(It(arr1), It(std::end(arr1)), a); in emplaceable_concept_tests()
132 int arr1[] = {42}; in test_ctor_under_alloc() local
141 C v(It(arr1), It(std::end(arr1)), a); in test_ctor_under_alloc()
155 C v(It(arr1), It(std::end(arr1)), a); in test_ctor_under_alloc()
Dconstruct_iter_iter.pass.cpp80 int arr1[] = {42}; in emplaceable_concept_tests() local
86 std::vector<T> v(It(arr1), It(std::end(arr1))); in emplaceable_concept_tests()
100 std::vector<T> v(It(arr1), It(std::end(arr1))); in emplaceable_concept_tests()
119 int arr1[] = {42}; in test_ctor_under_alloc() local
126 C v(It(arr1), It(std::end(arr1))); in test_ctor_under_alloc()
138 C v(It(arr1), It(std::end(arr1))); in test_ctor_under_alloc()
Dassign_iter_iter.pass.cpp28 int arr1[] = {42}; in test_emplaceable_concept() local
35 v.assign(It(arr1), It(std::end(arr1))); in test_emplaceable_concept()
51 v.assign(It(arr1), It(std::end(arr1))); in test_emplaceable_concept()
/external/libcxx/test/libcxx/containers/sequences/vector/vector.cons/
Dconstruct_iter_iter.pass.cpp20 int arr1[] = {42}; in test_ctor_under_alloc() local
27 C v(arr1, arr1 + 1); in test_ctor_under_alloc()
41 C v(arr1, arr1 + 1); in test_ctor_under_alloc()
Dconstruct_iter_iter_alloc.pass.cpp21 int arr1[] = {42}; in test_ctor_under_alloc() local
29 C v(arr1, arr1 + 1, a); in test_ctor_under_alloc()
44 C v(arr1, arr1 + 1, a); in test_ctor_under_alloc()
/external/llvm-project/libcxx/test/libcxx/containers/sequences/vector/vector.cons/
Dconstruct_iter_iter.pass.cpp20 int arr1[] = {42}; in test_ctor_under_alloc() local
27 C v(arr1, arr1 + 1); in test_ctor_under_alloc()
41 C v(arr1, arr1 + 1); in test_ctor_under_alloc()
Dconstruct_iter_iter_alloc.pass.cpp21 int arr1[] = {42}; in test_ctor_under_alloc() local
29 C v(arr1, arr1 + 1, a); in test_ctor_under_alloc()
44 C v(arr1, arr1 + 1, a); in test_ctor_under_alloc()
/external/llvm-project/clang/test/SemaCXX/
Ddeprecated.cpp238 int arr1[3], arr2[4]; variable
239 …bool b1 = arr1 == arr2; // expected-warning {{array comparison always evaluates to false}} cxx20-w…
240 …bool b2 = arr1 < arr2; // expected-warning {{array comparison always evaluates to a constant}} cxx…
242 bool b3 = arr1 == arr3; // cxx20-warning {{comparison between two arrays is deprecated}}
243 bool b4 = arr1 < arr3; // cxx20-warning {{comparison between two arrays is deprecated}}
245 bool b5 = arr1 <=> arr2; // cxx20-error {{invalid operands}}
249 bool b6 = arr1 == f(); // cxx20-warning {{comparison between two arrays is deprecated}}
250 bool b7 = arr1 == +f();
/external/llvm-project/llvm/test/CodeGen/X86/
Dlea-opt.ll8 @arr1 = external dso_local global [65 x %struct.anon1], align 16
15 ; ENABLED-NEXT: movl arr1(%rdi,%rdi,2), %ecx
16 ; ENABLED-NEXT: leaq arr1+4(%rdi,%rdi,2), %rax
17 ; ENABLED-NEXT: subl arr1+4(%rdi,%rdi,2), %ecx
18 ; ENABLED-NEXT: addl arr1+8(%rdi,%rdi,2), %ecx
37 ; DISABLED-NEXT: movl arr1(%rdi,%rdi,2), %edx
38 ; DISABLED-NEXT: leaq arr1+4(%rdi,%rdi,2), %rax
39 ; DISABLED-NEXT: subl arr1+4(%rdi,%rdi,2), %edx
40 ; DISABLED-NEXT: leaq arr1+8(%rdi,%rdi,2), %rcx
41 ; DISABLED-NEXT: addl arr1+8(%rdi,%rdi,2), %edx
[all …]
/external/llvm-project/clang/test/OpenMP/
Dtask_ast_print.cpp165 int arr[10], arr1[argc]; in main() local
175 #pragma omp taskgroup task_reduction(min: arr1) in main()
176 …inout : a, argv[:argc],arr[:a], ([10][argc])argv) priority(23) in_reduction(min: arr1), detach(evt) in main()
181 #pragma omp taskgroup task_reduction(min: arr1) in main()
182 #pragma omp parallel reduction(+:arr1) in main()
183 #pragma omp task in_reduction(min: arr1) depend(iterator(i=0:argc, unsigned j=argc:0:a), out: argv[… in main()
190 #pragma omp task in_reduction(+: arr1) in main()
/external/tensorflow/tensorflow/lite/micro/testing/
Dmicro_test.h145 #define TF_LITE_MICRO_ARRAY_ELEMENT_EXPECT_NEAR(arr1, idx1, arr2, idx2, \ argument
148 auto delta = ((arr1)[(idx1)] > (arr2)[(idx2)]) \
149 ? ((arr1)[(idx1)] - (arr2)[(idx2)]) \
150 : ((arr2)[(idx2)] - (arr1)[(idx1)]); \
152 MicroPrintf(#arr1 "[%d] (%f) near " #arr2 "[%d] (%f) failed at %s:%d", \
153 static_cast<int>(idx1), static_cast<float>((arr1)[(idx1)]), \
/external/llvm-project/clang/test/CodeGenOpenCL/
Dconstant-addr-space-globals.cl15 // CHECK: @k.arr1 = internal addrspace(2) constant [3 x i32] [i32 1, i32 2, i32 3]
20 // CHECK-NOT: %arr1 = alloca [3 x i32]
21 constant const int arr1[] = {1, 2, 3};
29 …i32 addrspace(2)* getelementptr inbounds ([3 x i32], [3 x i32] addrspace(2)* @k.arr1, i64 0, i64 0)
30 foo(&var1, arr1, arr2, arr3);
/external/clang/test/OpenMP/
Dtarget_parallel_for_simd_ast_print.cpp65 T arr[N][10], arr1[N]; in tmain() local
95 …(d) if(parallel:argc > 0) num_threads(N) proc_bind(master) reduction(+:c, arr1[argc]) reduction(ma… in tmain()
131 #pragma omp target parallel for simd map(arr1[0:10], i) in tmain()
155 #pragma omp target parallel for simd depend(in : argc, arr[i:argc], arr1[:]) in tmain()
179 #pragma omp target parallel for simd aligned(arr1:N-1) in tmain()
190 int arr[5][10], arr1[5]; in main() local
215 …d) if (parallel:argc > 0) num_threads(5) proc_bind(master) reduction(+:c, arr1[argc]) reduction(ma… in main()
251 #pragma omp target parallel for simd map(arr1[0:10], i) in main()
275 #pragma omp target parallel for simd depend(in : argc, arr[i:argc], arr1[:]) in main()
299 #pragma omp target parallel for simd aligned(arr1:4) in main()

12345