Home | History | Annotate | Download | only in Misc

Lines Matching refs:Length

10 void test(int *List, int Length) {
14 // CHECK-NEXT: while (i < Length)
15 while (i < Length) {
25 // CHECK-NEXT: while (i - 1 < Length)
26 while (i - 1 < Length) {
36 // CHECK-NEXT: while (i - 2 < Length)
37 while (i - 2 < Length) {
44 void test_nontype_template_param(int *List, int Length) {
46 for (int i = 0; i < Length; i++) {
54 void test_templates(int *List, int Length) {
55 test_nontype_template_param<2, 4>(List, Length);