Lines Matching refs:glist
2230 static struct completer_entry **glist;
2282 glist = (struct completer_entry **)
2283 xrealloc (glist, sizeof (struct completer_entry *) * glisttotlen);
2288 glist[0] = ent;
2293 if (ent->name->num < glist[0]->name->num)
2295 else if (ent->name->num > glist[end - 1]->name->num)
2304 c = ent->name->num - glist[i]->name->num;
2311 && ent->name->num == glist[i - 1]->name->num)
2327 if (ent->name->num != glist[i]->name->num)
2330 if (completer_entries_eq (ent, glist[i]))
2331 return glist[i];
2339 if (ent->name->num >= glist[i - 1]->name->num)
2343 if (ent->name->num < glist[i]->name->num)
2347 glist[x + 1] = glist[x];
2349 glist[i] = ent;
2437 glist[x]->num = x;
2645 print_completer_entry (glist[x]);