Lines Matching refs:List
4 void while_test(int *List, int Length) { in while_test() argument
14 List[i] = i * 2; in while_test()
20 void do_test(int *List, int Length) { in do_test() argument
26 List[i] = i * 2; in do_test()
34 void for_test(int *List, int Length) { in for_test() argument
40 List[i] = i * 2; in for_test()
47 double List[100]; in for_range_test() local
50 for (int i : List) { in for_range_test()
52 List[i] = i; in for_range_test()
57 void disable_test(int *List, int Length) { in disable_test() argument
61 List[i] = i * 2; in disable_test()
70 void for_define_test(int *List, int Length, int Value) { in for_define_test() argument
75 List[i] = i * Value; in for_define_test()
80 void for_contant_expression_test(int *List, int Length) { in for_contant_expression_test() argument
84 List[i] = i; in for_contant_expression_test()
90 List[i] += i; in for_contant_expression_test()
96 void for_template_test(A *List, int Length, A Value) { in for_template_test() argument
100 List[i] = i * Value; in for_template_test()
106 void for_template_define_test(A *List, int Length, A Value) { in for_template_define_test() argument
114 List[i] = i * Value; in for_template_define_test()
120 void for_template_constant_expression_test(A *List, int Length) { in for_template_constant_expression_test() argument
124 List[i] = i; in for_template_constant_expression_test()
130 List[i] += i; in for_template_constant_expression_test()
137 List[i] += i; in for_template_constant_expression_test()
143 List[i] += i; in for_template_constant_expression_test()
152 void template_test(double *List, int Length) { in template_test() argument
155 for_template_test<double>(List, Length, Value); in template_test()
156 for_template_define_test<double, int>(List, Length, Value); in template_test()
157 for_template_constant_expression_test<double, 2, 4, 8>(List, Length); in template_test()