HomeSort by relevance Sort by last modified time
    Searched full:pragma (Results 626 - 650 of 10171) sorted by null

<<21222324252627282930>>

  /external/clang/test/OpenMP/
taskloop_simd_private_messages.cpp 33 #pragma omp taskloop simd private(a) private(this->a)
45 #pragma omp taskloop simd private(a) private(this->a) private(s.a) // expected-error {{expected variable name or data member of current class}}
59 #pragma omp taskloop simd private(a) private(this->a)
64 #pragma omp taskloop simd private(a) private(this->a) private(s.a) // expected-error {{expected variable name or data member of current class}}
78 #pragma omp taskloop simd private(a) private(this->a) private(T::a)
83 #pragma omp taskloop simd private(a) private(this->a) private(s.a) private(s.T::a) // expected-error 2 {{expected variable name or data member of current class}}
91 #pragma omp threadprivate(h) // expected-note 2 {{defined as threadprivate or thread local}}
99 #pragma omp taskloop simd private // expected-error {{expected '(' after 'private'}}
102 #pragma omp taskloop simd private( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
105 #pragma omp taskloop simd private() // expected-error {{expected expression}
    [all...]
taskloop_priority_messages.cpp 14 #pragma omp taskloop priority // expected-error {{expected '(' after 'priority'}}
17 #pragma omp taskloop priority ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
20 #pragma omp taskloop priority () // expected-error {{expected expression}}
23 #pragma omp taskloop priority (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
26 #pragma omp taskloop priority (argc)) // expected-warning {{extra tokens at the end of '#pragma omp taskloop' are ignored}}
29 #pragma omp taskloop priority (argc > 0 ? argv[1][0] : argv[2][argc])
32 #pragma omp taskloop priority (foobool(argc)), priority (true) // expected-error {{directive '#pragma omp taskloop' cannot contain more than one 'priority' clause}}
35 #pragma omp taskloop priority (S) // expected-error {{'S' does not refer to a value}
    [all...]
taskloop_simd_priority_messages.cpp 14 #pragma omp taskloop simd priority // expected-error {{expected '(' after 'priority'}}
17 #pragma omp taskloop simd priority ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
20 #pragma omp taskloop simd priority () // expected-error {{expected expression}}
23 #pragma omp taskloop simd priority (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
26 #pragma omp taskloop simd priority (argc)) // expected-warning {{extra tokens at the end of '#pragma omp taskloop simd' are ignored}}
29 #pragma omp taskloop simd priority (argc > 0 ? argv[1][0] : argv[2][argc])
32 #pragma omp taskloop simd priority (foobool(argc)), priority (true) // expected-error {{directive '#pragma omp taskloop simd' cannot contain more than one 'priority' clause}}
35 #pragma omp taskloop simd priority (S) // expected-error {{'S' does not refer to a value}
    [all...]
for_simd_linear_messages.cpp 20 #pragma omp for simd linear(B:bfoo())
23 #pragma omp for simd linear(B::ib:B:bfoo())
26 #pragma omp for simd linear(B:ib)
29 #pragma omp for simd linear(z:B:ib)
31 #pragma omp for simd linear(B:B::bfoo())
33 #pragma omp for simd linear(X::x : ::z)
35 #pragma omp for simd linear(B,::z, X::x)
37 #pragma omp for simd linear(::z)
40 #pragma omp for simd linear(B::bfoo())
42 #pragma omp for simd linear(B::ib,B:C1+C2
    [all...]
for_simd_private_messages.cpp 33 #pragma omp for simd private(a) private(this->a)
45 #pragma omp for simd private(a) private(this->a) private(s.a) // expected-error {{expected variable name or data member of current class}}
59 #pragma omp for simd private(a) private(this->a)
64 #pragma omp for simd private(a) private(this->a) private(s.a) // expected-error {{expected variable name or data member of current class}}
78 #pragma omp for simd private(a) private(this->a) private(T::a)
83 #pragma omp for simd private(a) private(this->a) private(s.a) private(s.T::a) // expected-error 2 {{expected variable name or data member of current class}}
91 #pragma omp threadprivate(h) // expected-note 2 {{defined as threadprivate or thread local}}
99 #pragma omp for simd private // expected-error {{expected '(' after 'private'}}
102 #pragma omp for simd private( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
105 #pragma omp for simd private() // expected-error {{expected expression}
    [all...]
parallel_for_linear_messages.cpp 19 #pragma omp parallel for linear(B : bfoo())
23 #pragma omp parallel for linear(B::ib : B : bfoo())
27 #pragma omp parallel for linear(B : ib)
31 #pragma omp parallel for linear(z : B : ib)
34 #pragma omp parallel for linear(B : B::bfoo())
37 #pragma omp parallel for linear(X::x : ::z)
40 #pragma omp parallel for linear(B, ::z, X::x)
43 #pragma omp parallel for linear(::z)
47 #pragma omp parallel for linear(B::bfoo())
50 #pragma omp parallel for linear(B::ib, B : C1 + C2
    [all...]
parallel_for_private_messages.cpp 33 #pragma omp parallel for private(a) private(this->a)
45 #pragma omp parallel for private(a) private(this->a) private(s.a) // expected-error {{expected variable name or data member of current class}}
59 #pragma omp parallel for private(a) private(this->a)
64 #pragma omp parallel for private(a) private(this->a) private(s.a) // expected-error {{expected variable name or data member of current class}}
78 #pragma omp parallel for private(a) private(this->a) private(T::a)
83 #pragma omp parallel for private(a) private(this->a) private(s.a) private(s.T::a) // expected-error 2 {{expected variable name or data member of current class}}
91 #pragma omp threadprivate(h) // expected-note 2 {{defined as threadprivate or thread local}}
99 #pragma omp parallel for private // expected-error {{expected '(' after 'private'}}
102 #pragma omp parallel for private( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
105 #pragma omp parallel for private() // expected-error {{expected expression}
    [all...]
parallel_for_simd_linear_messages.cpp 20 #pragma omp parallel for simd linear(B:bfoo())
23 #pragma omp parallel for simd linear(B::ib:B:bfoo())
26 #pragma omp parallel for simd linear(B:ib)
29 #pragma omp parallel for simd linear(z:B:ib)
31 #pragma omp parallel for simd linear(B:B::bfoo())
33 #pragma omp parallel for simd linear(X::x : ::z)
35 #pragma omp parallel for simd linear(B,::z, X::x)
37 #pragma omp parallel for simd linear(::z)
40 #pragma omp parallel for simd linear(B::bfoo())
42 #pragma omp parallel for simd linear(B::ib,B:C1+C2
    [all...]
parallel_for_simd_private_messages.cpp 33 #pragma omp parallel for simd private(a) private(this->a)
45 #pragma omp parallel for simd private(a) private(this->a) private(s.a) // expected-error {{expected variable name or data member of current class}}
59 #pragma omp parallel for simd private(a) private(this->a)
64 #pragma omp parallel for simd private(a) private(this->a) private(s.a) // expected-error {{expected variable name or data member of current class}}
78 #pragma omp parallel for simd private(a) private(this->a) private(T::a)
83 #pragma omp parallel for simd private(a) private(this->a) private(s.a) private(s.T::a) // expected-error 2 {{expected variable name or data member of current class}}
91 #pragma omp threadprivate(h) // expected-note 2 {{defined as threadprivate or thread local}}
99 #pragma omp parallel for simd private // expected-error {{expected '(' after 'private'}}
102 #pragma omp parallel for simd private( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
105 #pragma omp parallel for simd private() // expected-error {{expected expression}
    [all...]
target_parallel_for_linear_messages.cpp 19 #pragma omp target parallel for linear(B : bfoo())
23 #pragma omp target parallel for linear(B::ib : B : bfoo())
27 #pragma omp target parallel for linear(B : ib)
31 #pragma omp target parallel for linear(z : B : ib)
34 #pragma omp target parallel for linear(B : B::bfoo())
37 #pragma omp target parallel for linear(X::x : ::z)
40 #pragma omp target parallel for linear(B, ::z, X::x)
43 #pragma omp target parallel for linear(::z)
47 #pragma omp target parallel for linear(B::bfoo())
50 #pragma omp target parallel for linear(B::ib, B : C1 + C2
    [all...]
target_parallel_for_simd_linear_messages.cpp 19 #pragma omp target parallel for simd linear(B : bfoo())
23 #pragma omp target parallel for simd linear(B::ib : B : bfoo())
27 #pragma omp target parallel for simd linear(B : ib)
31 #pragma omp target parallel for simd linear(z : B : ib)
34 #pragma omp target parallel for simd linear(B : B::bfoo())
37 #pragma omp target parallel for simd linear(X::x : ::z)
40 #pragma omp target parallel for simd linear(B, ::z, X::x)
43 #pragma omp target parallel for simd linear(::z)
47 #pragma omp target parallel for simd linear(B::bfoo())
50 #pragma omp target parallel for simd linear(B::ib, B : C1 + C2
    [all...]
openmp_check.cpp 3 #pragma omp parallel
7 #pragma omp parallel
9 #pragma omp target
simd_private_messages.cpp 30 #pragma omp simd private(a) private(this->a)
41 #pragma omp simd private(a) private(this->a) private(s.a) // expected-error {{expected variable name or data member of current class}}
55 #pragma omp simd private(a) private(this->a)
60 #pragma omp simd private(a) private(this->a) private(s.a) // expected-error {{expected variable name or data member of current class}}
74 #pragma omp simd private(a) private(this->a) private(T::a)
79 #pragma omp simd private(a) private(this->a) private(s.a) private(s.T::a) // expected-error 2 {{expected variable name or data member of current class}}
87 #pragma omp threadprivate(h) // expected-note 2 {{defined as threadprivate or thread local}}
94 #pragma omp simd private // expected-error {{expected '(' after 'private'}}
96 #pragma omp simd private ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
98 #pragma omp simd private () // expected-error {{expected expression}
    [all...]
target_update_ast_print.cpp 16 #pragma omp target update to(a) if(l>5) device(l) nowait depend(inout:l)
18 #pragma omp target update from(b) if(l<5) device(l-1) nowait depend(inout:l)
24 // CHECK-NEXT: #pragma omp target update to(a) if(l > 5) device(l) nowait depend(inout : l)
25 // CHECK-NEXT: #pragma omp target update from(b) if(l < 5) device(l - 1) nowait depend(inout : l)
29 // CHECK-NEXT: #pragma omp target update to(a) if(l > 5) device(l) nowait depend(inout : l)
30 // CHECK-NEXT: #pragma omp target update from(b) if(l < 5) device(l - 1) nowait depend(inout : l)
34 // CHECK-NEXT: #pragma omp target update to(a) if(l > 5) device(l) nowait depend(inout : l)
35 // CHECK-NEXT: #pragma omp target update from(b) if(l < 5) device(l - 1) nowait depend(inout : l)
45 #pragma omp target update to(a) if(f>0.0) device(n) nowait depend(in:n)
46 // CHECK-NEXT: #pragma omp target update to(a) if(f > 0.) device(n) nowait depend(in : n
    [all...]
taskloop_final_messages.cpp 14 #pragma omp taskloop final // expected-error {{expected '(' after 'final'}}
17 #pragma omp taskloop final( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
20 #pragma omp taskloop final() // expected-error {{expected expression}}
23 #pragma omp taskloop final(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
26 #pragma omp taskloop final(argc)) // expected-warning {{extra tokens at the end of '#pragma omp taskloop' are ignored}}
29 #pragma omp taskloop final(argc > 0 ? argv[1] : argv[2])
32 #pragma omp taskloop final(foobool(argc)), final(true) // expected-error {{directive '#pragma omp taskloop' cannot contain more than one 'final' clause}}
35 #pragma omp taskloop final(S) // expected-error {{'S' does not refer to a value}
    [all...]
taskloop_simd_final_messages.cpp 14 #pragma omp taskloop simd final // expected-error {{expected '(' after 'final'}}
17 #pragma omp taskloop simd final( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
20 #pragma omp taskloop simd final() // expected-error {{expected expression}}
23 #pragma omp taskloop simd final(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
26 #pragma omp taskloop simd final(argc)) // expected-warning {{extra tokens at the end of '#pragma omp taskloop simd' are ignored}}
29 #pragma omp taskloop simd final(argc > 0 ? argv[1] : argv[2])
32 #pragma omp taskloop simd final(foobool(argc)), final(true) // expected-error {{directive '#pragma omp taskloop simd' cannot contain more than one 'final' clause}}
35 #pragma omp taskloop simd final(S) // expected-error {{'S' does not refer to a value}
    [all...]
distribute_parallel_for_ast_print.cpp 24 #pragma omp target
25 #pragma omp teams
26 #pragma omp distribute parallel for private(a) private(this->a) private(T::a)
31 #pragma omp target
32 #pragma omp teams
33 #pragma omp distribute parallel for private(a) private(this->a)
40 // CHECK: #pragma omp distribute parallel for private(this->a) private(this->a) private(this->S::a)
41 // CHECK: #pragma omp distribute parallel for private(this->a) private(this->a) private(T::a)
42 // CHECK: #pragma omp distribute parallel for private(this->a) private(this->a)
49 #pragma omp targe
    [all...]
  /external/clang/test/CodeGenCXX/
pragma-weak.cpp 3 #pragma weak zex
10 #pragma weak foo
15 #pragma weak zed
19 #pragma weak bah
23 #pragma weak baz
27 #pragma weak _Z3baxv
30 // idea to expose the mangling to the pragma unless we really have to.
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/runtime/
rtstr.c 21 #pragma RUNTIME_CODE(RtAcquireLock)
44 #pragma RUNTIME_CODE(RtStrCpy)
61 #pragma RUNTIME_CODE(RtStrCat)
74 #pragma RUNTIME_CODE(RtStrLen)
90 #pragma RUNTIME_CODE(RtStrSize)
106 #pragma RUNTIME_CODE(RtBCDtoDecimal)
124 #pragma RUNTIME_CODE(RtDecimaltoBCD)
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
WinNtInclude.h 37 // pragma to suppress the warnings for Win32 only. This way our code can stil
41 #pragma warning(disable : 4115)
42 #pragma warning(disable : 4201)
43 #pragma warning(disable : 4214)
44 #pragma warning(disable : 4028)
45 #pragma warning(disable : 4133)
50 #pragma warning(default : 4115)
51 #pragma warning(default : 4201)
52 #pragma warning(default : 4214)
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Include/
Efi2WinNT.h 34 // pragma to suppress the warnings for Win32 only. This way our code can stil
38 #pragma warning(disable : 4115)
39 #pragma warning(disable : 4201)
40 #pragma warning(disable : 4214)
41 #pragma warning(disable : 4028)
42 #pragma warning(disable : 4133)
49 #pragma warning(default : 4115)
50 #pragma warning(default : 4201)
51 #pragma warning(default : 4214)
  /device/linaro/bootloader/arm-trusted-firmware/plat/arm/common/
arm_image_load.c 13 #pragma weak plat_flush_next_bl_params
14 #pragma weak plat_get_bl_image_load_info
15 #pragma weak plat_get_next_bl_params
  /external/clang/test/Preprocessor/
ignore-pragmas.c 8 #pragma GCC visibility push (default)
9 #pragma weak
10 #pragma this_pragma_does_not_exist
  /external/clang/test/SemaObjC/
pragma-pack.m 4 // Make sure pragma pack works inside ObjC methods. <rdar://problem/10893316>
9 #pragma pack(push, 1)
14 #pragma pack(pop)
  /frameworks/compile/slang/tests/F_reduce_general_void/
stderr.txt.expect 1 reduce_general_void.rs:11:13: error: accumulator voidA_accum() for '#pragma rs reduce(voidA)' (reduce_general_void.rs:9:12) parameter 'accum' (type 'void *') must not be pointer to incomplete type
2 reduce_general_void.rs:16:43: error: accumulator voidI_accum() for '#pragma rs reduce(voidI)' (reduce_general_void.rs:15:12) parameter 'val' (type 'void *') must not be a pointer
3 reduce_general_void.rs:22:29: error: outconverter voidO_out() for '#pragma rs reduce(voidO)' (reduce_general_void.rs:20:12) parameter 'out' (type 'void *') must not point to an incomplete type

Completed in 1067 milliseconds

<<21222324252627282930>>