Home | History | Annotate | Download | only in gdb.base

Lines Matching defs:struct1

504 struct small_rep_info_t print_struct_rep(struct small_rep_info_t struct1)
507 printf("Contents of struct1: \n\n");
508 printf("%10d%10d\n", struct1.value, struct1.head);
509 struct1.value =+5;
511 return struct1;
556 struct small_rep_info_t *struct1;
583 struct1 = (struct small_rep_info_t *)malloc(sizeof(struct small_rep_info_t));
611 init_struct_rep(struct1, 10);
625 print_struct_rep(*struct1);