Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching refs:Length

4 void while_test(int *List, int Length) {
9 while (i < Length) {
17 void do_test(int *List, int Length) {
26 } while (i < Length);
30 void for_test(int *List, int Length) {
33 for (int i = 0; i < Length; i++) {
54 void for_define_test(int *List, int Length, int Value) {
57 for (int i = 0; i < Length; i++) {
65 void for_template_test(A *List, int Length, A Value) {
68 for (int i = 0; i < Length; i++) {
76 void for_template_define_test(A *List, int Length, A Value) {
80 for (int i = 0; i < Length; i++) {
89 void template_test(double *List, int Length) {
92 for_template_test<double>(List, Length, Value);
93 for_template_define_test<double>(List, Length, Value);