Lines Matching full:num_elements
39 /* Creates a partition of NUM_ELEMENTS elements. Initially each
43 partition_new (int num_elements)
49 (num_elements - 1) * sizeof (struct partition_elem));
50 part->num_elements = num_elements;
51 for (e = 0; e < num_elements; ++e)
143 int num_elements = part->num_elements;
149 done = (char *) xmalloc (num_elements);
150 memset (done, 0, num_elements);
153 class_elements = (int *) xmalloc (num_elements * sizeof (int));
156 for (e = 0; e < num_elements; ++e)