Home | History | Annotate | Download | only in libcpu

Lines Matching refs:newp

266 		      struct synonym *newp = xmalloc (sizeof (*newp));
267 newp->from = $2;
268 newp->to = $3;
269 if (tfind (newp, &synonyms, compare_syn) != NULL)
273 else if (tsearch ( newp, &synonyms, compare_syn) == NULL)
295 struct instruction *newp = xcalloc (sizeof (*newp),
300 newp->repe = 1;
302 newp->rep = 1;
305 newp->bytes = $1;
306 newp->mnemonic = $4;
307 if (newp->mnemonic != (void *) -1l
320 newp->suffix = suffix_w;
322 newp->suffix = suffix_w0;
324 newp->suffix = suffix_tttn;
326 newp->suffix = suffix_w1;
328 newp->suffix = suffix_W;
330 newp->suffix = suffix_W1;
332 newp->suffix = suffix_D;
355 fillin_arg ($1, args->name, newp, n);
361 newp->next = instructions;
362 instructions = newp;
570 struct known_bitfield *newp = xmalloc (sizeof (struct known_bitfield));
571 newp->name = name;
572 newp->bits = num;
573 newp->tmp = 0;
575 if (tfind (newp, &bitfields, bitfield_compare) != NULL)
583 if (tsearch (newp, &bitfields, bitfield_compare) == NULL)
915 struct argstring *newp = xmalloc (sizeof (*newp));
916 newp->str = runp->operands[i].fct;
917 newp->idx = 0;
918 if (tsearch (newp, &fct_names[i], compare_argstring) == NULL)
928 struct argstring *newp = xmalloc (sizeof (*newp));
929 newp->str = runp->operands[i].str;
930 newp->idx = 0;
931 if (tsearch (newp, &strs[i], compare_argstring) == NULL)