HomeSort by relevance Sort by last modified time
    Searched defs:da (Results 51 - 75 of 195) sorted by null

1 23 4 5 6 7 8

  /external/ltp/testcases/kernel/sched/hyperthreading/ht_affinity/
ht_utils.c 84 int da; local
97 %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d", &da, str, &ch, &da, &da, &da, &da, &da, &da, &da, &da, &da, &da, &da, &da, &da, &da, &da, &da, &da, &da, &da, &da, &da, &da, &da, &da, &da, &da, &da, &d (…)
    [all...]
  /external/pdfium/third_party/agg23/
agg_math_stroke.h 56 float da = a1 - a2; local
57 bool ccw = da > 0 && da < FX_PI;
61 da = acos(width / (width + ((1.0f / 8) / approximation_scale))) * 2;
63 if (da > 0) {
68 a2 -= da / 4;
69 a1 += da;
73 a1 += da;
79 a2 += da / 4;
80 a1 -= da;
    [all...]
  /frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
UT_array_init.java 39 double[] da = s.get_da(); local
40 _RS_ASSERT("da[0] == 7.0", da[0] == 7.0);
41 _RS_ASSERT("da[1] == 8.88888", da[1] == 8.88888);
42 _RS_ASSERT("da.length == 2", da.length == 2);
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
UT_array_init.java 36 double[] da = s.get_da(); local
37 _RS_ASSERT("da[0] == 7.0", da[0] == 7.0);
38 _RS_ASSERT("da[1] == 8.88888", da[1] == 8.88888);
39 _RS_ASSERT("da.length == 2", da.length == 2);
  /frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
UT_array_init.java 38 double[] da = s.get_da(); local
39 _RS_ASSERT("da[0] == 7.0", da[0] == 7.0);
40 _RS_ASSERT("da[1] == 8.88888", da[1] == 8.88888);
41 _RS_ASSERT("da.length == 2", da.length == 2);
  /external/clang/test/OpenMP/
distribute_parallel_for_lastprivate_messages.cpp 173 const int da[5] = {0}; // expected-note {{constant variable is predetermined as shared}} local
247 #pragma omp distribute parallel for lastprivate(da) // expected-error {{shared variable cannot be lastprivate}}
distribute_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}}
176 #pragma omp distribute parallel for reduction(- : da) // expected-error {{const-qualified list item cannot be reduction}} expected-error {{const-qualified list item cannot be reduction}}
258 const int da[5] = {0}; // expected-note {{'da' defined here}} local
265 const int &r = da[i]; // expected-note {{'r' defined here}}
360 #pragma omp distribute parallel for reduction(- : da) // expected-error {{const-qualified list item cannot be reduction}}
distribute_parallel_for_simd_lastprivate_messages.cpp 173 const int da[5] = {0}; // expected-note {{constant variable is predetermined as shared}} local
247 #pragma omp distribute parallel for simd lastprivate(da) // expected-error {{shared variable cannot be lastprivate}}
distribute_parallel_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}}
176 #pragma omp distribute parallel for simd reduction(- : da) // expected-error {{const-qualified list item cannot be reduction}} expected-error {{const-qualified list item cannot be reduction}}
258 const int da[5] = {0}; // expected-note {{'da' defined here}} local
265 const int &r = da[i]; // expected-note {{'r' defined here}}
360 #pragma omp distribute parallel for simd reduction(- : da) // expected-error {{const-qualified list item cannot be reduction}}
distribute_simd_lastprivate_messages.cpp 173 const int da[5] = {0}; // expected-note {{constant variable is predetermined as shared}} local
247 #pragma omp distribute simd lastprivate(da) // expected-error {{shared variable cannot be lastprivate}}
distribute_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}}
176 #pragma omp distribute simd reduction(- : da) // expected-error {{const-qualified list item cannot be reduction}} expected-error {{const-qualified list item cannot be reduction}}
258 const int da[5] = {0}; // expected-note {{'da' defined here}} local
265 const int &r = da[i]; // expected-note {{'r' defined here}}
360 #pragma omp distribute simd reduction(- : da) // expected-error {{const-qualified list item cannot be reduction}}
for_firstprivate_messages.cpp 168 const int da[5] = {0}; local
228 #pragma omp for firstprivate(da) // OK
for_lastprivate_messages.cpp 158 const int da[5] = {0}; // expected-note {{constant variable is predetermined as shared}} local
218 #pragma omp for lastprivate(da) // expected-error {{shared variable cannot be lastprivate}}
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}}
parallel_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}}
138 #pragma omp parallel for simd 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 simd reduction(- : da) // expected-error {{const-qualified list item cannot be reduction}}
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}}
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}}
175 #pragma omp sections reduction(- : da) // expected-error {{const-qualified list item cannot be reduction}} expected-error {{const-qualified list item cannot be reduction}}
254 const int da[5] = {0}; // expected-note {{'da' defined here}} local
261 const int &r = da[i]; // expected-note {{'r' defined here}}
355 #pragma omp sections reduction(- : da) // expected-error {{const-qualified list item cannot be reduction}}
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}}
138 #pragma omp simd reduction(- : da) // expected-error {{const-qualified list item cannot be reduction}} expected-error {{const-qualified list item cannot be reduction}}
199 const int da[5] = {0}; // expected-note {{'da' defined here}} local
206 const int &r = da[i]; // expected-note {{'r' defined here}}
263 #pragma omp simd reduction(- : da) // expected-error {{const-qualified list item cannot be reduction}}
target_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 target 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 target parallel for reduction(- : da) // expected-error {{const-qualified list item cannot be reduction}}
target_parallel_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}}
138 #pragma omp target parallel for simd 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 target parallel for simd 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}}
target_update_from_messages.cpp 69 const T da[5] = { 0 }; local
78 const T (&l)[5] = da;
102 #pragma omp target update from(da)
103 #pragma omp target update from(da[:4])
125 const int da[5] = { 0 }; local
134 const int (&l)[5] = da;
156 #pragma omp target update from(da)
157 #pragma omp target update from(da[:4])

Completed in 233 milliseconds

1 23 4 5 6 7 8