Lines Matching defs:inodesc
38 struct inodesc {
41 struct inodesc *id_next; /* next on linked list */
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));
105 if (freeinodesc == (struct inodesc *)0) {
112 (struct inodesc **)xmalloc(2*sizeof (*ialloc));
114 ialloc[1] = (struct inodesc *)0;
127 if (ialloc == (struct inodesc **)0)
133 ialloc = (struct inodesc **)0;