Lines Matching defs:ntok

731 debug_exp (expressionS tok[], int ntok)
735 fprintf (stderr, "debug_exp: %d tokens", ntok);
736 for (i = 0; i < ntok; i++)
816 int ntok)
818 expressionS *end_tok = tok + ntok;
832 memset (tok, 0, sizeof (*tok) * ntok);
975 debug_exp (orig_tok, ntok - (end_tok - tok));
981 return ntok - (end_tok - tok);
1008 int ntok = *pntok;
1031 if (tokidx >= ntok)
1087 if (tokidx == ntok)
1089 *pntok = ntok;
1113 int ntok,
1123 opcode = find_opcode_match (opcode, tok, &ntok, &cpumatch);
1126 assemble_insn (opcode, tok, ntok, insn, BFD_RELOC_UNUSED);
1525 int ntok,
1530 if (ntok == 2)
1543 int ntok ATTRIBUTE_UNUSED,
1853 int ntok,
1878 if (tokidx >= ntok)
2002 int ntok,
2010 if (ntok == 2)
2040 int ntok,
2048 if (ntok == 2)
2087 int ntok,
2091 emit_ir_load (tok, ntok, ldXu_op[(long) vlgsize]);
2102 if (ntok == 2)
2150 int ntok,
2153 emit_ldXu (tok, ntok, vlgsize);
2162 int ntok,
2172 memcpy (newtok, tok, sizeof (expressionS) * ntok);
2174 assemble_tokens ("lda", newtok, ntok, 1);
2211 int ntok,
2214 emit_uldXu (tok, ntok, vlgsize);
2222 int ntok,
2230 assemble_tokens ("lda", newtok, ntok, 1);
2237 int ntok,
2243 emit_loadstore (tok, ntok, stX_op[lgsize]);
2254 if (ntok == 2)
2339 int ntok,
2346 memcpy (newtok, tok, sizeof (expressionS) * ntok);
2348 assemble_tokens ("lda", newtok, ntok, 1);
2410 int ntok,
2416 assemble_tokens (sextX_op[lgsize], tok, ntok, 0);
2425 newtok[2] = tok[ntok - 1];
2443 int ntok,
2467 if (ntok < 3)
2540 int ntok,
2563 if (ntok < 3)
2646 int ntok,
2655 if (tokidx < ntok && tok[tokidx].X_op == O_register)
2662 if (tokidx < ntok &&
2680 if (tokidx < ntok)
2705 int ntok,
2712 if (tokidx < ntok && tok[tokidx].X_op == O_register)
2719 if (tokidx < ntok &&
2727 if (tokidx < ntok)
2739 int ntok ATTRIBUTE_UNUSED,
2983 int ntok = *pntok;
2995 if (tokidx == ntok)
3003 if (tokidx >= ntok || tok[tokidx].X_op != O_register
3011 if (tokidx >= ntok || tok[tokidx].X_op != O_pregister
3019 if (tokidx < ntok && tok[tokidx].X_op == O_pregister
3026 if (tokidx >= ntok || tok[tokidx].X_op != O_cpregister
3034 if (tokidx >= ntok || tok[tokidx].X_op != O_register
3042 if (tokidx >= ntok)
3089 int ntok,
3100 if (ntok && USER_RELOC_P (tok[ntok - 1].X_op))
3102 reloc = ALPHA_RELOC_TABLE (tok[ntok - 1].X_op)->reloc;
3103 ntok--;
3114 macro = find_macro_match (macro, tok, &ntok);
3117 (*macro->emit) (tok, ntok, macro->arg);
3128 opcode = find_opcode_match (opcode, tok, &ntok, &cpumatch);
3132 assemble_insn (opcode, tok, ntok, &insn, reloc);
3136 insn.sequence = tok[ntok].X_add_number;
4996 int ntok, trunclen;
5008 if ((ntok = tokenize_arguments (str + opnamelen, tok, MAX_INSN_ARGS)) < 0)
5010 if (ntok != TOKENIZE_ERROR_REPORT)
5017 assemble_tokens (opname, tok, ntok, alpha_macros_on);