Lines Matching refs:link
270 struct list_head link;
325 struct list_head link;
404 list_del(&ins->link);
452 list_for_each_entry(agx_block, v, &ctx->blocks, link)
455 list_for_each_entry_rev(agx_block, v, &ctx->blocks, link)
458 list_for_each_entry_from(agx_block, v, from, &ctx->blocks, link)
461 list_for_each_entry_from_rev(agx_block, v, from, &ctx->blocks, link)
464 list_for_each_entry(agx_instr, v, &(block)->instructions, link)
467 list_for_each_entry_rev(agx_instr, v, &(block)->instructions, link)
470 list_for_each_entry_safe(agx_instr, v, &(block)->instructions, link)
473 list_for_each_entry_safe_rev(agx_instr, v, &(block)->instructions, link)
476 list_for_each_entry_from(agx_instr, v, from, &(block)->instructions, link)
479 list_for_each_entry_from_rev(agx_instr, v, from, &(block)->instructions, link)
525 return list_last_entry(&(ins->link), agx_instr, link);
531 return list_first_entry(&(ins->link), agx_instr, link);
537 return list_first_entry(&(block->link), agx_block, link);
543 agx_block *last = list_last_entry(&ctx->blocks, agx_block, link);
615 list_add(&I->link, &cursor->instr->link);
620 list_addtail(&I->link, &cursor->block->instructions);
626 list_addtail(&I->link, &cursor->instr->link);