Home | History | Annotate | Download | only in libiberty

Lines Matching defs:part

5    This file is part of GNU CC.
47 partition part = (partition)
50 part->num_elements = num_elements;
53 part->elements[e].class_element = e;
54 part->elements[e].next = &(part->elements[e]);
55 part->elements[e].class_count = 1;
58 return part;
64 partition_delete (partition part)
66 free (part);
70 of partition PART. If ELEM1 and ELEM2 are already in the same
75 partition_union (partition part, int elem1, int elem2)
77 struct partition_elem *elements = part->elements;
136 /* Prints PART to the file pointer FP. The elements of each
140 partition_print (partition part, FILE *fp)
143 int num_elements = part->num_elements;
144 struct partition_elem *elements = part->elements;