Searched refs:S1 (Results 101 - 125 of 217) sorted by relevance

123456789

/external/clang/test/OpenMP/
H A Dparallel_for_copyin_messages.cpp10 struct S1; // expected-note {{declared here}}
84 #pragma omp parallel for copyin(S1) // expected-error {{'S1' does not refer to a value}}
H A Dparallel_for_if_messages.cpp10 struct S1; // expected-note {{declared here}}
57 #pragma omp parallel for if (S1) // expected-error {{'S1' does not refer to a value}}
H A Dparallel_for_num_threads_messages.cpp10 struct S1; // expected-note {{declared here}}
57 #pragma omp parallel for num_threads (S1) // expected-error {{'S1' does not refer to a value}}
H A Dparallel_for_simd_copyin_messages.cpp10 struct S1; // expected-note {{declared here}}
84 #pragma omp parallel for simd copyin(S1) // expected-error {{'S1' does not refer to a value}}
H A Dfor_private_messages.cpp10 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
11 extern S1 a;
72 #pragma omp for private(S1) // expected-error {{'S1' does not refer to a value}}
75 #pragma omp for private(a, b) // expected-error {{private variable with incomplete type 'S1'}}
145 #pragma omp for private(S1) // expected-error {{'S1' does not refer to a value}}
148 #pragma omp for private(a, b) // expected-error {{private variable with incomplete type 'S1'}}
H A Dfor_simd_aligned_messages.cpp76 struct S1; // expected-note 2 {{declared here}}
77 extern S1 a; // expected-note {{'a' declared here}}
128 #pragma omp for simd aligned (S1) // expected-error {{'S1' does not refer to a value}}
187 #pragma omp for simd aligned (S1) // expected-error {{'S1' does not refer to a value}}
189 // expected-error@+2 {{argument of aligned clause should be array, pointer, reference to array or reference to pointer, not 'S1'}}
H A Dfor_simd_private_messages.cpp10 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
11 extern S1 a;
72 #pragma omp for simd private(S1) // expected-error {{'S1' does not refer to a value}}
75 #pragma omp for simd private(a, b) // expected-error {{private variable with incomplete type 'S1'}}
145 #pragma omp for simd private(S1) // expected-error {{'S1' does not refer to a value}}
148 #pragma omp for simd private(a, b) // expected-error {{private variable with incomplete type 'S1'}}
H A Dparallel_for_private_messages.cpp10 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
11 extern S1 a;
72 #pragma omp parallel for private(S1) // expected-error {{'S1' does not refer to a value}}
75 #pragma omp parallel for private(a, b) // expected-error {{private variable with incomplete type 'S1'}}
145 #pragma omp parallel for private(S1) // expected-error {{'S1' does not refer to a value}}
148 #pragma omp parallel for private(a, b) // expected-error {{private variable with incomplete type 'S1'}}
H A Dparallel_for_simd_private_messages.cpp10 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
11 extern S1 a;
72 #pragma omp parallel for simd private(S1) // expected-error {{'S1' does not refer to a value}}
75 #pragma omp parallel for simd private(a, b) // expected-error {{private variable with incomplete type 'S1'}}
145 #pragma omp parallel for simd private(S1) // expected-error {{'S1' does not refer to a value}}
148 #pragma omp parallel for simd private(a, b) // expected-error {{private variable with incomplete type 'S1'}}
H A Dparallel_sections_firstprivate_messages.cpp10 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
11 extern S1 a;
97 #pragma omp parallel sections firstprivate(S1) // expected-error {{'S1' does not refer to a value}}
101 #pragma omp parallel sections firstprivate(a, b) // expected-error {{firstprivate variable with incomplete type 'S1'}}
203 #pragma omp parallel sections firstprivate(S1) // expected-error {{'S1' does not refer to a value}}
207 #pragma omp parallel sections firstprivate(a, b, c, d, f) // expected-error {{firstprivate variable with incomplete type 'S1'}}
H A Dparallel_sections_lastprivate_messages.cpp10 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
11 extern S1 a;
98 #pragma omp parallel sections lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
102 #pragma omp parallel sections lastprivate(a, b) // expected-error {{lastprivate variable with incomplete type 'S1'}}
190 #pragma omp parallel sections lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
194 #pragma omp parallel sections lastprivate(a, b, c, d, f) // expected-error {{lastprivate variable with incomplete type 'S1'}} expected-error 3 {{shared variable cannot be lastprivate}}
H A Dsections_firstprivate_messages.cpp10 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
11 extern S1 a;
105 #pragma omp sections firstprivate(S1) // expected-error {{'S1' does not refer to a value}}
110 #pragma omp sections firstprivate(a, b) // expected-error {{firstprivate variable with incomplete type 'S1'}}
226 #pragma omp sections firstprivate(S1) // expected-error {{'S1' does not refer to a value}}
231 #pragma omp sections firstprivate(a, b, c, d, f) // expected-error {{firstprivate variable with incomplete type 'S1'}}
H A Dsections_lastprivate_messages.cpp10 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
11 extern S1 a;
106 #pragma omp sections lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
111 #pragma omp sections lastprivate(a, b) // expected-error {{lastprivate variable with incomplete type 'S1'}}
212 #pragma omp sections lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
217 #pragma omp sections lastprivate(a, b, c, d, f) // expected-error {{lastprivate variable with incomplete type 'S1'}} expected-error 3 {{shared variable cannot be lastprivate}}
H A Dsimd_aligned_messages.cpp76 struct S1; // expected-note 2 {{declared here}}
77 extern S1 a; // expected-note {{'a' declared here}}
128 #pragma omp simd aligned (S1) // expected-error {{'S1' does not refer to a value}}
187 #pragma omp simd aligned (S1) // expected-error {{'S1' does not refer to a value}}
189 // expected-error@+2 {{argument of aligned clause should be array, pointer, reference to array or reference to pointer, not 'S1'}}
H A Dsimd_lastprivate_messages.cpp10 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
11 extern S1 a;
91 #pragma omp simd lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
94 #pragma omp simd lastprivate(a, b) // expected-error {{lastprivate variable with incomplete type 'S1'}}
159 #pragma omp simd lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
162 #pragma omp simd lastprivate(a, b, c, d, f) // expected-error {{lastprivate variable with incomplete type 'S1'}} expected-error 3 {{shared variable cannot be lastprivate}}
H A Dsimd_private_messages.cpp10 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
11 extern S1 a;
60 #pragma omp simd private (S1) // expected-error {{'S1' does not refer to a value}}
62 #pragma omp simd private (a, b) // expected-error {{private variable with incomplete type 'S1'}}
115 #pragma omp simd private (S1) // expected-error {{'S1' does not refer to a value}}
117 #pragma omp simd private (a, b) // expected-error {{private variable with incomplete type 'S1'}}
H A Dsingle_firstprivate_messages.cpp10 struct S1; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
11 extern S1 a;
91 #pragma omp single firstprivate(S1) // expected-error {{'S1' does not refer to a value}}
94 #pragma omp single firstprivate(a, b) // expected-error {{firstprivate variable with incomplete type 'S1'}}
174 #pragma omp single firstprivate(S1) // expected-error {{'S1' does not refer to a value}}
177 #pragma omp single firstprivate(a, b, c, d, f) // expected-error {{firstprivate variable with incomplete type 'S1'}}
H A Dfor_collapse_messages.cpp10 struct S1; // expected-note {{declared here}}
69 #pragma omp for collapse (S1) // expected-error {{'S1' does not refer to a value}}
H A Dparallel_for_simd_if_messages.cpp10 struct S1; // expected-note {{declared here}}
57 #pragma omp parallel for simd if (S1) // expected-error {{'S1' does not refer to a value}}
H A Dparallel_for_simd_num_threads_messages.cpp10 struct S1; // expected-note {{declared here}}
57 #pragma omp parallel for simd num_threads (S1) // expected-error {{'S1' does not refer to a value}}
/external/clang/test/SemaCXX/
H A Dempty-class-layout.cpp40 struct S1 : virtual Derived<10> { struct in namespace:Test0
43 SA(6, sizeof(S1) == 24);
H A Dnew-delete.cpp287 struct S1 { struct in namespace:PR7436
300 void test(S1* s1, S2* s2) {
303 (void)new S1();
304 (void)new (0L) S1(); // expected-error {{is a private member}}
H A Dwarn-overloaded-virtual.cpp8 struct S1 : public B1 { struct in inherits:B1
/external/pcre/dist/sljit/
H A DsljitNativeSPARC_common.c104 #define S1(s1) (reg_map[s1] << 14) macro
441 FAIL_IF(push_inst(compiler, SAVE | D(SLJIT_SP) | S1(SLJIT_SP) | IMM(-local_size), UNMOVABLE_INS));
445 FAIL_IF(push_inst(compiler, SAVE | D(SLJIT_SP) | S1(SLJIT_SP) | S2(TMP_REG1), UNMOVABLE_INS));
483 return push_inst(compiler, RESTORE | D(SLJIT_R0) | S1(src) | S2(0), UNMOVABLE_INS);
536 | S1(arg & REG_MASK) | ((arg & OFFS_REG_MASK) ? S2(OFFS_REG(arg)) : IMM(argw)),
596 FAIL_IF(push_inst(compiler, SLL_W | D(arg2) | S1(OFFS_REG(arg)) | IMM_ARG | argw, DR(arg2)));
603 FAIL_IF(push_inst(compiler, ADD | D(TMP_REG3) | S1(TMP_REG3) | IMM(argw - compiler->cache_argw), DR(TMP_REG3)));
624 return push_inst(compiler, data_transfer_insts[flags & MEM_MASK] | dest | S1(arg2) | IMM(0), delay_slot);
626 return push_inst(compiler, data_transfer_insts[flags & MEM_MASK] | dest | S1(base) | S2(arg2), delay_slot);
627 FAIL_IF(push_inst(compiler, data_transfer_insts[flags & MEM_MASK] | dest | S1(bas
[all...]
/external/emma/lib/internal/
H A Dstamptool.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/util/ com/vladium/util/version/ ...

Completed in 678 milliseconds

123456789