Lines Matching refs:start
71 mde_cookie_t start;
92 * if we want to start at the top, start at index 0
94 start = startnode;
95 if (start == MDE_INVAL_ELEM_COOKIE) {
96 start = 0;
100 * Scan from the start point until the first node.
102 while (start < mdp->element_count &&
103 MDE_TAG(&mdp->mdep[start]) == MDET_NULL) {
104 start++;
108 * This was a bogus start point if no node found
110 if (MDE_TAG(&mdp->mdep[start]) != MDET_NODE) {
111 return (-1); /* illegal start node specified */
127 res = mdl_walk_dag(mdp, MDE_INVAL_ELEM_COOKIE, start,