Lines Matching refs:new_fag
12523 struct nds32_fag *new_fag; in nds32_fag_insert() local
12549 new_fag = bfd_malloc (sizeof (struct nds32_fag)); in nds32_fag_insert()
12550 memset (new_fag, 0, sizeof (*new_fag)); in nds32_fag_insert()
12551 new_fag->addr = addr; in nds32_fag_insert()
12552 new_fag->count = 1; in nds32_fag_insert()
12553 new_fag->next = iter->next; in nds32_fag_insert()
12554 new_fag->relas_capcity = INIT_RELAS_CAP; in nds32_fag_insert()
12555 new_fag->relas = (Elf_Internal_Rela **) in nds32_fag_insert()
12556 bfd_malloc (new_fag->relas_capcity * sizeof (void *)); in nds32_fag_insert()
12557 new_fag->relas[0] = rel; in nds32_fag_insert()
12558 iter->next = new_fag; in nds32_fag_insert()