Home | History | Annotate | Download | only in OpenMP

Lines Matching refs:ind2

49   T ind2 = - num * L; // expected-note {{'ind2' defined here}}
51 #pragma omp for simd linear(ind2:L)
53 T cur = arr[(int)ind2];
54 ind2 += L;
61 int ind2 = 0;
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;