/external/clang/test/OpenMP/ |
parallel_reduction_messages.cpp | 76 const T da[5] = {T()}; // expected-note 2 {{'da' defined here}} local 81 const T &r = da[(int)i]; // expected-note 2 {{'r' defined here}} 120 #pragma omp parallel reduction(- : da) // expected-error {{const-qualified list item cannot be reduction}} expected-error {{const-qualified list item cannot be reduction}} 169 const int da[5] = {0}; // expected-note {{'da' defined here}} local 176 const int &r = da[i]; // expected-note {{'r' defined here}} 215 #pragma omp parallel reduction(- : da) // expected-error {{const-qualified list item cannot be reduction}}
|
parallel_sections_reduction_messages.cpp | 76 const T da[5] = {T()}; // expected-note 2 {{'da' defined here}} local 81 const T &r = da[(int)i]; // expected-note 2 {{'r' defined here}} 156 #pragma omp parallel sections reduction(- : da) // expected-error {{const-qualified list item cannot be reduction}} expected-error {{const-qualified list item cannot be reduction}} 227 const int da[5] = {0}; // expected-note {{'da' defined here}} local 234 const int &r = da[i]; // expected-note {{'r' defined here}} 309 #pragma omp parallel sections reduction(- : da) // expected-error {{const-qualified list item cannot be reduction}}
|
target_parallel_reduction_messages.cpp | 76 const T da[5] = {T()}; // expected-note 2 {{'da' defined here}} local 81 const T &r = da[(int)i]; // expected-note 2 {{'r' defined here}} 120 #pragma omp target parallel reduction(- : da) // expected-error {{const-qualified list item cannot be reduction}} expected-error {{const-qualified list item cannot be reduction}} 172 const int da[5] = {0}; // expected-note {{'da' defined here}} local 179 const int &r = da[i]; // expected-note {{'r' defined here}} 218 #pragma omp target parallel reduction(- : da) // expected-error {{const-qualified list item cannot be reduction}}
|
parallel_firstprivate_messages.cpp | 60 const int da[5] = { 0 }; local 78 #pragma omp parallel firstprivate(da)
|
parallel_shared_messages.cpp | 57 const int da[5] = { 0 }; local 74 #pragma omp parallel shared(da)
|
task_firstprivate_messages.cpp | 80 const int da[5] = {0}; local 98 #pragma omp task firstprivate(da)
|
task_shared_messages.cpp | 61 const int da[5] = {0}; local 90 #pragma omp task shared(da)
|
teams_private_messages.cpp | 54 const int da[5] = { 0 }; // expected-note {{constant variable is predetermined as shared}} local 96 #pragma omp teams private(da) // expected-error {{shared variable cannot be private}}
|
target_parallel_private_messages.cpp | 58 const I da[5] = { 0 }; // expected-note {{constant variable is predetermined as shared}} local 91 #pragma omp target parallel private(da) // expected-error {{shared variable cannot be private}} 145 const int da[5] = { 0 }; // expected-note {{constant variable is predetermined as shared}} local 178 #pragma omp target parallel private(da) // expected-error {{shared variable cannot be private}}
|
target_parallel_for_map_messages.cpp | 55 const T da[5] = { 0 }; local 64 const T (&l)[5] = da; 121 #pragma omp target parallel for map(da) 135 #pragma omp target parallel for map(da) 137 #pragma omp target parallel for map(da[:4]) 172 const int da[5] = { 0 }; local 181 const int (&l)[5] = da; 225 #pragma omp target parallel for map(da) 239 #pragma omp target parallel for map(da) 241 #pragma omp target parallel for map(da[:4] [all...] |
target_parallel_for_simd_map_messages.cpp | 55 const T da[5] = { 0 }; local 64 const T (&l)[5] = da; 121 #pragma omp target parallel for simd map(da) 135 #pragma omp target parallel for simd map(da) 137 #pragma omp target parallel for simd map(da[:4]) 172 const int da[5] = { 0 }; local 181 const int (&l)[5] = da; 225 #pragma omp target parallel for simd map(da) 239 #pragma omp target parallel for simd map(da) 241 #pragma omp target parallel for simd map(da[:4] [all...] |
for_reduction_messages.cpp | 77 const T da[5] = {T()}; // expected-note 2 {{'da' defined here}} local 82 const T &r = da[(int)i]; // expected-note 2 {{'r' defined here}} 158 #pragma omp for reduction(- : da) // expected-error {{const-qualified list item cannot be reduction}} expected-error {{const-qualified list item cannot be reduction}} 232 const int da[5] = {0}; // expected-note {{'da' defined here}} local 239 const int &r = da[i]; // expected-note {{'r' defined here}} 315 #pragma omp for reduction(- : da) // expected-error {{const-qualified list item cannot be reduction}}
|
for_simd_reduction_messages.cpp | 76 const T da[5] = {T()}; // expected-note 2 {{'da' defined here}} local 81 const T &r = da[(int)i]; // expected-note 2 {{'r' defined here}} 157 #pragma omp for simd reduction(- : da) // expected-error {{const-qualified list item cannot be reduction}} expected-error {{const-qualified list item cannot be reduction}} 223 const int da[5] = {0}; // expected-note {{'da' defined here}} local 230 const int &r = da[i]; // expected-note {{'r' defined here}} 306 #pragma omp for simd reduction(- : da) // expected-error {{const-qualified list item cannot be reduction}}
|
parallel_for_reduction_messages.cpp | 76 const T da[5] = {T()}; // expected-note 2 {{'da' defined here}} local 81 const T &r = da[(int)i]; // expected-note 2 {{'r' defined here}} 138 #pragma omp parallel for reduction(- : da) // expected-error {{const-qualified list item cannot be reduction}} expected-error {{const-qualified list item cannot be reduction}} 196 const int da[5] = {0}; // expected-note {{'da' defined here}} local 203 const int &r = da[i]; // expected-note {{'r' defined here}} 260 #pragma omp parallel for reduction(- : da) // expected-error {{const-qualified list item cannot be reduction}}
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
ColorMatrixSample.java | 47 float db, float da) { 52 0, 0, 0, 1, da });
|
/libcore/luni/src/test/java/libcore/java/io/ |
OldAndroidBufferedInputStreamTest.java | 36 ByteArrayInputStream da = new ByteArrayInputStream(str.getBytes()); local 60 BufferedInputStream d = new BufferedInputStream(da, 9);
|
OldAndroidBufferedReaderTest.java | 35 StringReader da = new StringReader(str); local 58 BufferedReader d = new BufferedReader(da);
|
OldAndroidLineNumberReaderTest.java | 37 StringReader da = new StringReader(str); local 65 LineNumberReader d = new LineNumberReader(da);
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mep/ |
relocs.d | 12 1070 ff7f98dd 010098da 0f00f8db 700058da ............p.X. 76 1076: 98 da 0f 00 jmp f52 <-:s3:foo:\+:s9:.text.end:0-:S5:.text> 78 107e: 58 da 02 00 jmp 24a <>>:s3:foo:#0+03\+0x48>
|
/device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/ |
pmap.h | 128 #define pmap_copy(dp, sp, da, l, sa) /* nothing */
|
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.aggr/ |
p1.cpp | 124 DefaultedAggr da = { 42 } ; variable
|
/external/wpa_supplicant_8/wpa_supplicant/ |
wmm_ac.h | 169 void wmm_ac_rx_action(struct wpa_supplicant *wpa_s, const u8 *da,
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/i860/ |
ldst01.d | 16 18: 01 20 da 14 ld.l 8192\(%r6\),%r26 31 54: 01 08 da 10 ld.l %r1\(%r6\),%r26
|
ldst02.d | 16 18: fe 1f da 14 ld.s 8190\(%r6\),%r26 31 54: 00 08 da 10 ld.s %r1\(%r6\),%r26
|
ldst03.d | 16 18: fe 1f da 04 ld.b 8190\(%r6\),%r26 35 64: 00 08 da 00 ld.b %r1\(%r6\),%r26
|