Lines Matching defs:qblock
354 struct qblock {
361 struct qblock *successors[2];
470 struct qblock *cur_block;
471 struct qblock *loop_cont_block;
472 struct qblock *loop_break_block;
473 struct qblock *last_top_block;
520 struct qblock *qir_new_block(struct vc4_compile *c);
521 void qir_set_emit_block(struct vc4_compile *c, struct qblock *block);
522 void qir_link_blocks(struct qblock *predecessor, struct qblock *successor);
523 struct qblock *qir_entry_block(struct vc4_compile *c);
524 struct qblock *qir_exit_block(struct vc4_compile *c);
665 struct qblock *entry = qir_entry_block(c); \
837 list_for_each_entry(struct qblock, block, &c->blocks, link)
840 list_for_each_entry_rev(struct qblock, block, &c->blocks, link)
844 for (struct qblock *succ = block->successors[0]; \