Lines Matching refs:inodesc
38 struct inodesc { struct
41 struct inodesc *id_next; /* next on linked list */ argument
44 static struct inodesc ilist; /* list of used inodesc structs */
45 static struct inodesc *last; /* last inodesc init'd or matched */
46 static struct inodesc *freeinodesc; /* free list of inodesc structs */
47 static struct inodesc **ialloc; /* allocated chunks, for freeing */
104 freeinodesc = (struct inodesc *)xcalloc(nused, sizeof (*freeinodesc)); in allocino()
105 if (freeinodesc == (struct inodesc *)0) { in allocino()
112 (struct inodesc **)xmalloc(2*sizeof (*ialloc)); in allocino()
114 ialloc[1] = (struct inodesc *)0; in allocino()
127 if (ialloc == (struct inodesc **)0) in freeino()
133 ialloc = (struct inodesc **)0; in freeino()