Home
last modified time | relevance | path

Searched refs:ntok (Results 1 – 10 of 10) sorted by relevance

/openbsd/src/gnu/usr.bin/binutils/gas/config/
Dtc-alpha.c928 int ntok, trunclen; local
940 if ((ntok = tokenize_arguments (str + opnamelen, tok, MAX_INSN_ARGS)) < 0)
942 if (ntok != TOKENIZE_ERROR_REPORT)
949 assemble_tokens (opname, tok, ntok, alpha_macros_on);
1864 debug_exp (tok, ntok) in debug_exp() argument
1866 int ntok;
1870 fprintf (stderr, "debug_exp: %d tokens", ntok);
1871 for (i = 0; i < ntok; i++)
1948 tokenize_arguments (str, tok, ntok) in tokenize_arguments() argument
1951 int ntok;
[all …]
Dtc-xtensa.c1832 insn->ntok = tok - insn->tok;
2827 if (targ->ntok <= op_num)
2828 targ->ntok = op_num + 1;
2836 assert (op_data < insn->ntok);
2854 assert (op_data < insn->ntok);
2885 if (targ->ntok <= op_num)
2886 targ->ntok = op_num + 1;
2891 assert (op_data < insn->ntok);
3031 int n = insn->ntok;
3074 int n = insn->ntok;
[all …]
Dxtensa-istack.h46 int ntok; member
/openbsd/src/gnu/usr.bin/binutils-2.17/gas/config/
Dtc-alpha.c724 debug_exp (expressionS tok[], int ntok) in debug_exp() argument
728 fprintf (stderr, "debug_exp: %d tokens", ntok); in debug_exp()
729 for (i = 0; i < ntok; i++) in debug_exp()
809 int ntok) in tokenize_arguments() argument
811 expressionS *end_tok = tok + ntok; in tokenize_arguments()
825 memset (tok, 0, sizeof (*tok) * ntok); in tokenize_arguments()
968 debug_exp (orig_tok, ntok - (end_tok - tok)); in tokenize_arguments()
974 return ntok - (end_tok - tok); in tokenize_arguments()
1001 int ntok = *pntok; in find_opcode_match() local
1024 if (tokidx >= ntok) in find_opcode_match()
[all …]
Dtc-xtensa.c2018 insn->ntok = tok - insn->tok; in parse_arguments()
2064 for (opnd = 0; opnd < insn->ntok; opnd++) in get_invisible_operands()
2077 for (opnd = 0; opnd < insn->ntok; opnd++) in get_invisible_operands()
2790 assert (cond->op_num < insn->ntok); in xg_instruction_matches_rule()
2829 assert (cond->op_num < insn->ntok); in xg_instruction_matches_rule()
2830 assert (cond->op_data < insn->ntok); in xg_instruction_matches_rule()
3181 int n = insn->ntok; in xg_immeds_fit()
3223 int n = insn->ntok; in xg_symbolic_immeds_fit()
3332 if (targ->ntok <= op_num) in xg_build_to_insn()
3333 targ->ntok = op_num + 1; in xg_build_to_insn()
[all …]
Dxtensa-istack.h47 int ntok; member
/openbsd/src/usr.bin/mandoc/
Dmdoc_macro.c516 int ntok; in macro_or_word() local
518 ntok = buf[ppos] == '"' || parsed == 0 || in macro_or_word()
522 if (ntok == TOKEN_NONE) { in macro_or_word()
530 (*mdoc_macro(ntok)->fp)(mdoc, ntok, line, ppos, pos, buf); in macro_or_word()
552 enum roff_tok atok, ntok; in blk_exp_close() local
719 ntok = TOKEN_NONE; in blk_exp_close()
730 ntok = lookup(mdoc, tok, line, lastarg, p); in blk_exp_close()
732 if (ntok == TOKEN_NONE) { in blk_exp_close()
745 (*mdoc_macro(ntok)->fp)(mdoc, ntok, line, lastarg, pos, buf); in blk_exp_close()
751 if (ntok != TOKEN_NONE && n->flags & NODE_BROKEN) { in blk_exp_close()
[all …]
Dman_macro.c203 enum roff_tok ctok, ntok; in blk_close() local
211 ntok = MAN_RS; in blk_close()
216 if (nn->tok == ntok && nn->type == ROFFT_BLOCK) in blk_close()
234 ntok = MAN_SY; in blk_close()
237 ntok = MAN_UR; in blk_close()
240 ntok = MAN_MT; in blk_close()
247 if (nn->tok == ntok && nn->type == ROFFT_BLOCK && ! --nrew) in blk_close()
/openbsd/src/lib/libc/asr/
Dasr.c575 int ntok; in strsplit() local
578 for (cp = line, tp = tokens, ntok = 0; in strsplit()
579 ntok < ntokens && (*tp = strsep(&cp, " \t")) != NULL; ) in strsplit()
582 ntok++; in strsplit()
585 return (ntok); in strsplit()
771 int ntok; in asr_ctx_parse() local
785 if ((ntok = strsplit(buf, tok, 10)) == 0) in asr_ctx_parse()
788 pass0(tok, ntok, ac); in asr_ctx_parse()
891 int ntok; in _asr_parse_namedb_line() local
909 if ((ntok = strsplit(buf, tokens, ntoken)) == 0) in _asr_parse_namedb_line()
[all …]
/openbsd/src/usr.sbin/acme-client/
Djson.c558 jsmntok_t *tok, *ntok; in json_parse() local
575 if ((ntok = recallocarray(tok, tokcount, tokcount * 2, in json_parse()
581 tok = ntok; in json_parse()