Lines Matching refs:link
278 struct list_head link;
344 struct list_head link;
421 list_del(&ins->link);
475 list_for_each_entry(agx_block, v, &ctx->blocks, link)
478 list_for_each_entry_rev(agx_block, v, &ctx->blocks, link)
481 list_for_each_entry_from(agx_block, v, from, &ctx->blocks, link)
484 list_for_each_entry_from_rev(agx_block, v, from, &ctx->blocks, link)
487 list_for_each_entry(agx_instr, v, &(block)->instructions, link)
490 list_for_each_entry_rev(agx_instr, v, &(block)->instructions, link)
493 list_for_each_entry_safe(agx_instr, v, &(block)->instructions, link)
496 list_for_each_entry_safe_rev(agx_instr, v, &(block)->instructions, link)
499 list_for_each_entry_from(agx_instr, v, from, &(block)->instructions, link)
502 list_for_each_entry_from_rev(agx_instr, v, from, &(block)->instructions, link)
559 return list_last_entry(&(ins->link), agx_instr, link);
565 return list_first_entry(&(ins->link), agx_instr, link);
571 return list_first_entry(&(block->link), agx_block, link);
577 agx_block *last = list_last_entry(&ctx->blocks, agx_block, link);
675 list_add(&I->link, &cursor->instr->link);
680 list_addtail(&I->link, &cursor->block->instructions);
686 list_addtail(&I->link, &cursor->instr->link);