Home | History | Annotate | Download | only in Parser

Lines Matching refs:Length

7 void test_nontype_template_param(int *List, int Length) {
9 for (int i = 0; i < Length; i++) {
14 for (int i = 0; i < Length; i++) {
20 void test_nontype_template_vectorize(int *List, int Length) {
22 for (int i = 0; i < Length; i++) {
27 for (int i = 0; i < Length; i++) {
33 void test_nontype_template_interleave(int *List, int Length) {
35 for (int i = 0; i < Length; i++) {
40 for (int i = 0; i < Length; i++) {
46 void test_nontype_template_char(int *List, int Length) {
48 for (int i = 0; i < Length; i++) {
54 void test_nontype_template_bool(int *List, int Length) {
56 for (int i = 0; i < Length; i++) {
62 void test_nontype_template_badarg(int *List, int Length) {
65 for (int i = 0; i < Length; i++) {
71 void test_type_template_vectorize(int *List, int Length) {
74 for (int i = 0; i < Length; i++) {
79 void test(int *List, int Length) {
85 while (i + 1 < Length) {
92 while (i < Length) {
99 while (i - 1 < Length) {
104 while (i - 2 < Length) {
109 while (i - 3 < Length) {
113 int VList[Length];
119 test_nontype_template_param<4, 8>(List, Length);
142 while (i-4 < Length) {
152 while (i-5 < Length) {
156 test_nontype_template_vectorize<4>(List, Length);
157 /* expected-note {{in instantiation of function template specialization}} */ test_nontype_template_vectorize<-1>(List, Length);
158 test_nontype_template_interleave<8>(List, Length);
159 /* expected-note {{in instantiation of function template specialization}} */ test_nontype_template_interleave<-1>(List, Length);
161 /* expected-note {{in instantiation of function template specialization}} */ test_nontype_template_char<'A'>(List, Length); // Loop hint arg cannot be a char.
162 /* expected-note {{in instantiation of function template specialization}} */ test_nontype_template_bool<true>(List, Length); // Or a bool.
163 /* expected-note {{in instantiation of function template specialization}} */ test_type_template_vectorize<int>(List, Length); // Or a template type.
168 while (i-6 < Length) {
183 while (i-6 < Length) {
190 while (i-7 < Length) {
202 while (i-8 < Length) {
207 /* expected-error {{expected a for, while, or do-while loop to follow '#pragma clang loop'}} */ int j = Length;
210 while (j-1 < Length) {
225 while (i-8 < Length) {
235 while (i-9 < Length) {
245 while (i-10 < Length) {
255 while (i-11 < Length) {
262 while (i-11 < Length) {