Lines Matching refs:Length
4 void while_test(int *List, int Length) { in while_test() argument
13 while (i < Length) { in while_test()
21 void do_test(int *List, int Length) { in do_test() argument
29 } while (i < Length); in do_test()
35 void for_test(int *List, int Length) { in for_test() argument
39 for (int i = 0; i < Length; i++) { in for_test()
58 void disable_test(int *List, int Length) { in disable_test() argument
60 for (int i = 0; i < Length; i++) { in disable_test()
71 void for_define_test(int *List, int Length, int Value) { in for_define_test() argument
74 for (int i = 0; i < Length; i++) { in for_define_test()
81 void for_contant_expression_test(int *List, int Length) { in for_contant_expression_test() argument
83 for (int i = 0; i < Length; i++) { in for_contant_expression_test()
89 for (int i = 0; i < Length; i++) { in for_contant_expression_test()
97 void for_template_test(A *List, int Length, A Value) { in for_template_test() argument
99 for (int i = 0; i < Length; i++) { in for_template_test()
107 void for_template_define_test(A *List, int Length, A Value) { in for_template_define_test() argument
113 for (int i = 0; i < Length; i++) { in for_template_define_test()
121 void for_template_constant_expression_test(A *List, int Length) { in for_template_constant_expression_test() argument
123 for (int i = 0; i < Length; i++) { in for_template_constant_expression_test()
129 for (int i = 0; i < Length; i++) { in for_template_constant_expression_test()
136 for (int i = 0; i < Length; i++) { in for_template_constant_expression_test()
142 for (int i = 0; i < Length; i++) { in for_template_constant_expression_test()
153 void template_test(double *List, int Length) { in template_test() argument
156 for_template_test<double>(List, Length, Value); in template_test()
157 for_template_define_test<double, int>(List, Length, Value); in template_test()
158 for_template_constant_expression_test<double, 2, 4, 8>(List, Length); in template_test()