Lines Matching refs:g
141 glue* g = reinterpret_cast<glue*>(data); in moreglue() local
142 FILE* p = reinterpret_cast<FILE*>(ALIGN(data + sizeof(*g))); in moreglue()
143 __sfileext* pext = reinterpret_cast<__sfileext*>(ALIGN(data + sizeof(*g)) + n * sizeof(FILE)); in moreglue()
144 g->next = nullptr; in moreglue()
145 g->niobs = n; in moreglue()
146 g->iobs = p; in moreglue()
153 return g; in moreglue()
169 struct glue *g; in __sfp() local
172 for (g = &__sglue; g != nullptr; g = g->next) { in __sfp()
173 for (fp = g->iobs, n = g->niobs; --n >= 0; fp++) in __sfp()
180 if ((g = moreglue(NDYNAMIC)) == nullptr) return nullptr; in __sfp()
182 lastglue->next = g; in __sfp()
183 lastglue = g; in __sfp()
184 fp = g->iobs; in __sfp()
213 for (glue* g = &__sglue; g != nullptr; g = g->next) { in _fwalk() local
214 FILE* fp = g->iobs; in _fwalk()
215 for (int n = g->niobs; --n >= 0; ++fp) { in _fwalk()