Lines Matching refs:newp
267 struct synonym *newp = xmalloc (sizeof (*newp));
268 newp->from = $2;
269 newp->to = $3;
270 if (tfind (newp, &synonyms, compare_syn) != NULL)
274 else if (tsearch ( newp, &synonyms, compare_syn) == NULL)
296 struct instruction *newp = xcalloc (sizeof (*newp),
301 newp->repe = 1;
303 newp->rep = 1;
306 newp->bytes = $1;
307 newp->mnemonic = $4;
308 if (newp->mnemonic != (void *) -1l
321 newp->suffix = suffix_w;
323 newp->suffix = suffix_w0;
325 newp->suffix = suffix_tttn;
327 newp->suffix = suffix_w1;
329 newp->suffix = suffix_W;
331 newp->suffix = suffix_W1;
333 newp->suffix = suffix_D;
356 fillin_arg ($1, args->name, newp, n);
362 newp->next = instructions;
363 instructions = newp;
571 struct known_bitfield *newp = xmalloc (sizeof (struct known_bitfield));
572 newp->name = name;
573 newp->bits = num;
574 newp->tmp = 0;
576 if (tfind (newp, &bitfields, bitfield_compare) != NULL)
581 free (newp);
585 if (tsearch (newp, &bitfields, bitfield_compare) == NULL)
917 struct argstring *newp = xmalloc (sizeof (*newp));
918 newp->str = runp->operands[i].fct;
919 newp->idx = 0;
920 if (tsearch (newp, &fct_names[i], compare_argstring) == NULL)
930 struct argstring *newp = xmalloc (sizeof (*newp));
931 newp->str = runp->operands[i].str;
932 newp->idx = 0;
933 if (tsearch (newp, &strs[i], compare_argstring) == NULL)