Home | History | Annotate | Download | only in glsl

Lines Matching refs:child

61    /* The first child (head of a linked list) */
62 struct ralloc_header *child;
92 info->next = parent->child;
93 parent->child = info;
134 ralloc_header *child, *old, *info;
144 if (info->parent->child == old)
145 info->parent->child = info;
154 /* Update child->parent links for all children */
155 for (child = info->child; child != NULL; child = child->next)
156 child->parent = info;
216 if (info->parent->child == info)
217 info->parent->child = info->next;
235 while (info->child != NULL) {
236 temp = info->child;
237 info->child = temp->next;