Home | History | Annotate | Download | only in Python

Lines Matching defs:b_next

59        block, not to be confused with b_next, which is next by control flow. */
67 /* If b_next is non-NULL, it is a pointer to the next
69 struct basicblock_ *b_next;
600 c->u->u_curblock->b_next = block;
609 c->u->u_curblock->b_next = block;
3417 if (b->b_next != NULL)
3418 dfs(c, b->b_next, a);
3464 if (b->b_next)
3465 maxdepth = stackdepth_walk(c, b->b_next, depth, maxdepth);
3917 block ends with a jump or return b_next shouldn't set.