Home | History | Annotate | Download | only in libcpu

Lines Matching refs:newp

269 		      struct synonym *newp = xmalloc (sizeof (*newp));
270 newp->from = $2;
271 newp->to = $3;
272 if (tfind (newp, &synonyms, compare_syn) != NULL)
276 else if (tsearch ( newp, &synonyms, compare_syn) == NULL)
298 struct instruction *newp = xcalloc (sizeof (*newp),
303 newp->repe = 1;
305 newp->rep = 1;
308 newp->bytes = $1;
309 newp->mnemonic = $4;
310 if (newp->mnemonic != (void *) -1l
323 newp->suffix = suffix_w;
325 newp->suffix = suffix_w0;
327 newp->suffix = suffix_tttn;
329 newp->suffix = suffix_w1;
331 newp->suffix = suffix_W;
333 newp->suffix = suffix_W1;
335 newp->suffix = suffix_D;
358 fillin_arg ($1, args->name, newp, n);
364 newp->next = instructions;
365 instructions = newp;
573 struct known_bitfield *newp = xmalloc (sizeof (struct known_bitfield));
574 newp->name = name;
575 newp->bits = num;
576 newp->tmp = 0;
578 if (tfind (newp, &bitfields, bitfield_compare) != NULL)
586 if (tsearch (newp, &bitfields, bitfield_compare) == NULL)
918 struct argstring *newp = xmalloc (sizeof (*newp));
919 newp->str = runp->operands[i].fct;
920 newp->idx = 0;
921 if (tsearch (newp, &fct_names[i], compare_argstring) == NULL)
931 struct argstring *newp = xmalloc (sizeof (*newp));
932 newp->str = runp->operands[i].str;
933 newp->idx = 0;
934 if (tsearch (newp, &strs[i], compare_argstring) == NULL)