Lines Matching defs:gp
610 register struct mgroup *gp;
653 if ((gp = (struct mgroup *)
654 calloc(sizeof (*gp), 1)) == NULL) {
657 gp->ge_name = vcopy(*ap);
658 gp->ge_link = gh->g_list;
659 gh->g_list = gp;
672 register struct mgroup *gp, *gpnext;
694 for (gp = gh->g_list; gp != NOGE; gp = gpnext) {
695 gpnext = gp->ge_link;
696 vfree(gp->ge_name);
697 free(gp);