Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching refs:Length

4 void while_test(int *List, int Length) {
12 while (i < Length) {
20 void do_test(int *List, int Length) {
28 } while (i < Length);
34 void for_test(int *List, int Length) {
38 for (int i = 0; i < Length; i++) {
57 void disable_test(int *List, int Length) {
59 for (int i = 0; i < Length; i++) {
70 void for_define_test(int *List, int Length, int Value) {
73 for (int i = 0; i < Length; i++) {
80 void for_contant_expression_test(int *List, int Length) {
82 for (int i = 0; i < Length; i++) {
88 for (int i = 0; i < Length; i++) {
96 void for_template_test(A *List, int Length, A Value) {
98 for (int i = 0; i < Length; i++) {
106 void for_template_define_test(A *List, int Length, A Value) {
112 for (int i = 0; i < Length; i++) {
120 void for_template_constant_expression_test(A *List, int Length) {
122 for (int i = 0; i < Length; i++) {
128 for (int i = 0; i < Length; i++) {
135 for (int i = 0; i < Length; i++) {
141 for (int i = 0; i < Length; i++) {
152 void template_test(double *List, int Length) {
155 for_template_test<double>(List, Length, Value);
156 for_template_define_test<double, int>(List, Length, Value);
157 for_template_constant_expression_test<double, 2, 4, 8>(List, Length);