Searched refs:ind2 (Results 1 - 20 of 20) sorted by relevance

/external/clang/test/OpenMP/
H A Dfor_linear_messages.cpp49 T ind2 = - num * L; // expected-note {{'ind2' defined here}} local
51 #pragma omp for linear(ind2:L)
53 T cur = arr[(int)ind2];
54 ind2 += L;
61 int ind2 = 0; local
62 // expected-warning@+1 {{zero linear step (ind2 should probably be const)}}
63 #pragma omp for linear(ind2:LEN)
65 ind2 += LEN;
67 return ind2;
[all...]
H A Dfor_simd_linear_messages.cpp49 T ind2 = - num * L; // expected-note {{'ind2' defined here}} local
51 #pragma omp for simd linear(ind2:L)
53 T cur = arr[(int)ind2];
54 ind2 += L;
61 int ind2 = 0; local
62 // expected-warning@+1 {{zero linear step (ind2 should probably be const)}}
63 #pragma omp for simd linear(ind2:LEN)
65 ind2 += LEN;
67 return ind2;
[all...]
H A Dparallel_for_linear_messages.cpp59 T ind2 = -num * L; // expected-note {{'ind2' defined here}} local
61 #pragma omp parallel for linear(ind2 : L)
63 T cur = arr[(int)ind2];
64 ind2 += L;
72 int ind2 = 0; local
73 // expected-warning@+1 {{zero linear step (ind2 should probably be const)}}
74 #pragma omp parallel for linear(ind2 : LEN)
76 ind2 += LEN;
78 return ind2;
[all...]
H A Dparallel_for_simd_linear_messages.cpp49 T ind2 = - num * L; // expected-note {{'ind2' defined here}} local
51 #pragma omp parallel for simd linear(ind2:L)
53 T cur = arr[(int)ind2];
54 ind2 += L;
61 int ind2 = 0; local
62 // expected-warning@+1 {{zero linear step (ind2 should probably be const)}}
63 #pragma omp parallel for simd linear(ind2:LEN)
65 ind2 += LEN;
67 return ind2;
[all...]
H A Dtarget_parallel_for_linear_messages.cpp59 T ind2 = -num * L; // expected-note {{'ind2' defined here}} local
61 #pragma omp target parallel for linear(ind2 : L)
63 T cur = arr[(int)ind2];
64 ind2 += L;
72 int ind2 = 0; local
73 // expected-warning@+1 {{zero linear step (ind2 should probably be const)}}
74 #pragma omp target parallel for linear(ind2 : LEN)
76 ind2 += LEN;
78 return ind2;
[all...]
H A Dtarget_parallel_for_simd_linear_messages.cpp59 T ind2 = -num * L; // expected-note {{'ind2' defined here}} local
61 #pragma omp target parallel for simd linear(ind2 : L)
63 T cur = arr[(int)ind2];
64 ind2 += L;
72 int ind2 = 0; local
73 // expected-warning@+1 {{zero linear step (ind2 should probably be const)}}
74 #pragma omp target parallel for simd linear(ind2 : LEN)
76 ind2 += LEN;
78 return ind2;
[all...]
H A Dfor_simd_aligned_messages.cpp51 T ind2 = - num * L; local
56 T cur = arr[(int)ind2];
57 ind2 += L;
67 int *ind2 = 0; local
69 #pragma omp for simd aligned(ind2:LEN)
71 ind2 += LEN;
H A Dsimd_aligned_messages.cpp51 T ind2 = - num * L; local
56 T cur = arr[(int)ind2];
57 ind2 += L;
67 int *ind2 = 0; local
69 #pragma omp simd aligned(ind2:LEN)
71 ind2 += LEN;
H A Dparallel_for_simd_aligned_messages.cpp51 T ind2 = - num * L; local
56 T cur = arr[(int)ind2];
57 ind2 += L;
67 int *ind2 = 0; local
69 #pragma omp parallel for simd aligned(ind2:LEN)
71 ind2 += LEN;
H A Dtarget_parallel_for_simd_aligned_messages.cpp51 T ind2 = - num * L; local
56 T cur = arr[(int)ind2];
57 ind2 += L;
67 int *ind2 = 0; local
69 #pragma omp target parallel for simd aligned(ind2:LEN)
71 ind2 += LEN;
H A Dtaskloop_simd_aligned_messages.cpp51 T ind2 = - num * L; local
56 T cur = arr[(int)ind2];
57 ind2 += L;
67 int *ind2 = 0; local
69 #pragma omp taskloop simd aligned(ind2:LEN)
71 ind2 += LEN;
H A Ddistribute_parallel_for_simd_linear_messages.cpp75 T ind2 = - num * L; // expected-note {{'ind2' defined here}} local
79 #pragma omp distribute parallel for simd linear(ind2:L) // expected-error {{argument of a linear clause should be of integral or pointer type}}
81 T cur = arr[(int)ind2];
82 ind2 += L;
89 int ind2 = 0; local
92 #pragma omp parallel for simd linear(ind2:LEN) // expected-warning {{zero linear step (ind2 should probably be const)}}
94 ind2 += LEN;
96 return ind2;
[all...]
H A Ddistribute_simd_linear_messages.cpp75 T ind2 = - num * L; // expected-note {{'ind2' defined here}} local
79 #pragma omp distribute simd linear(ind2:L) // expected-error {{argument of a linear clause should be of integral or pointer type}}
81 T cur = arr[(int)ind2];
82 ind2 += L;
89 int ind2 = 0; local
92 #pragma omp parallel for simd linear(ind2:LEN) // expected-warning {{zero linear step (ind2 should probably be const)}}
94 ind2 += LEN;
96 return ind2;
[all...]
H A Dsimd_linear_messages.cpp49 T ind2 = - num * L; // expected-note {{'ind2' defined here}} local
51 #pragma omp simd linear(ind2:L)
53 T cur = arr[(int)ind2];
54 ind2 += L;
61 int ind2 = 0; local
62 // expected-warning@+1 {{zero linear step (ind2 should probably be const)}}
63 #pragma omp simd linear(ind2:LEN)
65 ind2 += LEN;
67 return ind2;
[all...]
H A Dtaskloop_simd_linear_messages.cpp49 T ind2 = - num * L; // expected-note {{'ind2' defined here}} local
51 #pragma omp taskloop simd linear(ind2:L)
53 T cur = arr[(int)ind2];
54 ind2 += L;
61 int ind2 = 0; local
62 // expected-warning@+1 {{zero linear step (ind2 should probably be const)}}
63 #pragma omp taskloop simd linear(ind2:LEN)
65 ind2 += LEN;
67 return ind2;
[all...]
H A Ddistribute_parallel_for_simd_aligned_messages.cpp72 T ind2 = - num * L; local
79 T cur = arr[(int)ind2];
80 ind2 += L;
93 int *ind2 = 0; local
96 #pragma omp distribute parallel for simd aligned(ind2:LEN) // expected-error {{argument to 'aligned' clause must be a strictly positive integer value}}
98 ind2 += LEN;
H A Ddistribute_simd_aligned_messages.cpp72 T ind2 = - num * L; local
79 T cur = arr[(int)ind2];
80 ind2 += L;
93 int *ind2 = 0; local
96 #pragma omp distribute simd aligned(ind2:LEN) // expected-error {{argument to 'aligned' clause must be a strictly positive integer value}}
98 ind2 += LEN;
/external/testng/src/main/java/org/testng/
H A DConverter.java69 int ind2 = bn.lastIndexOf(File.separatorChar);
70 String baseName = bn.substring(ind2 + 1);
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Dpitch_estimator.c143 int ind1, ind2, peaks_ind, peak, max_ind; local
206 ind2 = 0;
209 corr = corrvec1[ind1++] + corrvec2[ind2++];
218 ind2 = PITCH_BW;
222 ratio = ((double) (ind1 + 12)) / ((double) (ind2 + 12));
224 corr = adj * (corrvec1[ind1] + corrvec2[ind2]);
230 corr = adj * (corrvec1[ind2++] + corrvec2[ind1++]);
239 ind2 = PITCH_BW-1;
243 ratio = ((double) (ind1 + 12)) / ((double) (ind2 + 12));
245 corr = adj * (corrvec1[ind1] + corrvec2[ind2]);
[all...]
/external/c-ares/
H A Dares_gethostbyname.c425 int i1, i2, ind1, ind2; local
439 ind2 = get_address_index(&a2, sortlist, nsort);
440 if (ind2 <= ind1)
481 int i1, i2, ind1, ind2; local
495 ind2 = get6_address_index(&a2, sortlist, nsort);
496 if (ind2 <= ind1)

Completed in 290 milliseconds