• Home
  • Raw
  • Download

Lines Matching refs:newp

1613 		      struct synonym *newp = xmalloc (sizeof (*newp));  local
1614 newp->from = (yyvsp[(2) - (3)].str);
1615 newp->to = (yyvsp[(3) - (3)].str);
1616 if (tfind (newp, &synonyms, compare_syn) != NULL)
1620 else if (tsearch ( newp, &synonyms, compare_syn) == NULL)
1638 struct instruction *newp = xcalloc (sizeof (*newp), local
1643 newp->repe = 1;
1645 newp->rep = 1;
1648 newp->bytes = (yyvsp[(1) - (6)].bit);
1649 newp->mnemonic = (yyvsp[(4) - (6)].str);
1650 if (newp->mnemonic != (void *) -1l
1663 newp->suffix = suffix_w;
1665 newp->suffix = suffix_w0;
1667 newp->suffix = suffix_tttn;
1669 newp->suffix = suffix_w1;
1671 newp->suffix = suffix_W;
1673 newp->suffix = suffix_W1;
1675 newp->suffix = suffix_D;
1698 fillin_arg ((yyvsp[(1) - (6)].bit), args->name, newp, n);
1704 newp->next = instructions;
1705 instructions = newp;
2171 struct known_bitfield *newp = xmalloc (sizeof (struct known_bitfield)); in new_bitfield() local
2172 newp->name = name; in new_bitfield()
2173 newp->bits = num; in new_bitfield()
2174 newp->tmp = 0; in new_bitfield()
2176 if (tfind (newp, &bitfields, bitfield_compare) != NULL) in new_bitfield()
2184 if (tsearch (newp, &bitfields, bitfield_compare) == NULL) in new_bitfield()
2516 struct argstring *newp = xmalloc (sizeof (*newp)); in find_numbers() local
2517 newp->str = runp->operands[i].fct; in find_numbers()
2518 newp->idx = 0; in find_numbers()
2519 if (tsearch (newp, &fct_names[i], compare_argstring) == NULL) in find_numbers()
2529 struct argstring *newp = xmalloc (sizeof (*newp)); in find_numbers() local
2530 newp->str = runp->operands[i].str; in find_numbers()
2531 newp->idx = 0; in find_numbers()
2532 if (tsearch (newp, &strs[i], compare_argstring) == NULL) in find_numbers()