Lines Matching refs:more
921 hol_append (struct hol *hol, struct hol *more) in hol_append() argument
928 *cl_end = more->clusters; in hol_append()
929 more->clusters = 0; in hol_append()
932 if (more->num_entries > 0) in hol_append()
936 hol->num_entries = more->num_entries; in hol_append()
937 hol->entries = more->entries; in hol_append()
938 hol->short_options = more->short_options; in hol_append()
939 more->num_entries = 0; /* Mark MORE's fields as invalid. */ in hol_append()
948 unsigned num_entries = hol->num_entries + more->num_entries; in hol_append()
953 malloc (hol_so_len + strlen (more->short_options) + 1); in hol_append()
962 more->entries, in hol_append()
963 more->num_entries * sizeof (struct hol_entry)); in hol_append()
975 more_so = more->short_options; in hol_append()
976 for (left = more->num_entries; left > 0; e++, left--) in hol_append()
1010 hol_free (more); in hol_append()