Lines Matching refs:next
11 * The above copyright notice and this permission notice (including the next
132 if ((const bblock_t *)this->link.next != that)
187 bblock_t *next;
214 next = new_block();
215 cur_if->add_successor(mem_ctx, next, bblock_link_logical);
217 set_next_block(&cur, next, ip);
225 next = new_block();
227 cur_if->add_successor(mem_ctx, next, bblock_link_logical);
228 cur_else->add_successor(mem_ctx, next, bblock_link_physical);
230 set_next_block(&cur, next, ip);
290 * (which is represented as the "next" successor), or disabled (if it
313 next = new_block();
314 cur->add_successor(mem_ctx, next, bblock_link_logical);
316 set_next_block(&cur, next, ip);
323 * flow until the start of the next loop iteration (*not* until the
336 cur->add_successor(mem_ctx, cur_do->next(), bblock_link_logical);
338 next = new_block();
340 cur->add_successor(mem_ctx, next, bblock_link_logical);
342 cur->add_successor(mem_ctx, next, bblock_link_physical);
344 set_next_block(&cur, next, ip);
364 next = new_block();
366 cur->add_successor(mem_ctx, next, bblock_link_logical);
368 cur->add_successor(mem_ctx, next, bblock_link_physical);
370 set_next_block(&cur, next, ip);
390 cur->add_successor(mem_ctx, cur_do->next(), bblock_link_logical);