Home | History | Annotate | Download | only in stub

Lines Matching defs:nodep

68 	struct alloc_node **nodep;
70 for (nodep = &alloc_head; *nodep; nodep = &(*nodep)->next)
71 if ((*nodep)->ptr == ptr)
72 return nodep;
79 struct alloc_node **nodep, *next;
81 nodep = find_node(ptr);
82 if (nodep) {
83 next = (*nodep)->next;
84 free(*nodep);
85 *nodep = next;