Lines Matching refs:g
103 struct glue *g; in moreglue() local
108 g = (struct glue *)malloc(sizeof(*g) + ALIGNBYTES + n * sizeof(FILE) in moreglue()
110 if (g == NULL) in moreglue()
112 p = (FILE *)ALIGN((g + 1)); in moreglue()
113 g->next = NULL; in moreglue()
114 g->niobs = n; in moreglue()
115 g->iobs = p; in moreglue()
123 return (g); in moreglue()
134 struct glue *g; in __sfp() local
140 for (g = &__sglue;; g = g->next) { in __sfp()
141 for (fp = g->iobs, n = g->niobs; --n >= 0; fp++) in __sfp()
144 if (g->next == NULL && (g->next = moreglue(NDYNAMIC)) == NULL) in __sfp()
176 struct glue *g;
180 for (g = &__sglue; (n -= g->niobs) > 0 && g->next; g = g->next)
183 g->next = moreglue(n);