Home | History | Annotate | Download | only in unit

Lines Matching refs:sibling

60 	node_t  *leftmost_child, *sibling;
73 for (sibling = node_next_get(leftmost_child); sibling != NULL;
74 sibling = node_next_get(sibling)) {
75 node_print(sibling, depth + 1);
104 node_t *leftmost_child, *sibling;
119 for (sibling = node_next_get(leftmost_child); sibling != NULL;
120 sibling = node_next_get(sibling)) {
121 expect_ptr_eq(node_next_get(node_prev_get(sibling)), sibling,
122 "sibling's prev doesn't link to sibling");
123 nnodes += node_validate(sibling, node);