Home | History | Annotate | Download | only in opcodes

Lines Matching refs:glist

2223 static struct completer_entry **glist;
2275 glist = (struct completer_entry **)
2276 xrealloc (glist, sizeof (struct completer_entry *) * glisttotlen);
2281 glist[0] = ent;
2286 if (ent->name->num < glist[0]->name->num)
2288 else if (ent->name->num > glist[end - 1]->name->num)
2297 c = ent->name->num - glist[i]->name->num;
2304 && ent->name->num == glist[i - 1]->name->num)
2320 if (ent->name->num != glist[i]->name->num)
2323 if (completer_entries_eq (ent, glist[i]))
2324 return glist[i];
2332 if (ent->name->num >= glist[i - 1]->name->num)
2336 if (ent->name->num < glist[i]->name->num)
2340 glist[x + 1] = glist[x];
2342 glist[i] = ent;
2430 glist[x]->num = x;
2638 print_completer_entry (glist[x]);