Home
last modified time | relevance | path

Searched refs:token (Results 1 – 25 of 730) sorted by relevance

12345678910>>...30

/netbsd/src/sys/external/bsd/acpica/dist/compiler/
Dasltokens.y174 %token <i> PARSEOP_ACCESSAS
175 %token <i> PARSEOP_ACCESSATTRIB_BLOCK
176 %token <i> PARSEOP_ACCESSATTRIB_BLOCK_CALL
177 %token <i> PARSEOP_ACCESSATTRIB_BYTE
178 %token <i> PARSEOP_ACCESSATTRIB_BYTES
179 %token <i> PARSEOP_ACCESSATTRIB_QUICK
180 %token <i> PARSEOP_ACCESSATTRIB_RAW_BYTES
181 %token <i> PARSEOP_ACCESSATTRIB_RAW_PROCESS
182 %token <i> PARSEOP_ACCESSATTRIB_SND_RCV
183 %token <i> PARSEOP_ACCESSATTRIB_WORD
[all …]
/netbsd/src/external/bsd/ntp/dist/ntpd/
Dntp_parser.y52 %token-table
74 %token <Integer> T_Abbrev
75 %token <Integer> T_Age
76 %token <Integer> T_All
77 %token <Integer> T_Allan
78 %token <Integer> T_Allpeers
79 %token <Integer> T_Auth
80 %token <Integer> T_Autokey
81 %token <Integer> T_Automax
82 %token <Integer> T_Average
[all …]
Dkeyword-gen.c35 u_short token; /* Associated Token */ member
363 u_short token; in generate_fsm() local
382 token = ntp_keywords[i].token; in generate_fsm()
383 if (1 > token || token >= COUNTOF(sst)) { in generate_fsm()
389 token); in generate_fsm()
392 sst[token].finishes_token = token; in generate_fsm()
524 u_short token, in create_scan_states() argument
590 sst[my_state].finishes_token = (u_short)token; in create_scan_states()
593 if (sst[token].finishes_token != (u_short)token) { in create_scan_states()
596 token, symbname(token)); in create_scan_states()
[all …]
/netbsd/src/bin/sh/
Darith_token.c75 int token; in arith_token() local
81 token = *buf; in arith_token()
83 if (isdigit(token)) { in arith_token()
91 token = *end; in arith_token()
96 "%.*s", token, (int)(end - buf), buf); in arith_token()
103 } else if (is_name(token)) { in arith_token()
121 } else switch (token) { in arith_token()
137 token, token); in arith_token()
141 token = ARITH_ASS; in arith_token()
147 token += ARITH_ASS_GAP; in arith_token()
[all …]
/netbsd/src/usr.sbin/npf/npfctl/
Dnpf_parse.y94 %token RULE_ENTRY_TOKEN MAP_ENTRY_TOKEN
100 %token ALG
101 %token ALGO
102 %token ALL
103 %token ANY
104 %token APPLY
105 %token ARROWBOTH
106 %token ARROWLEFT
107 %token ARROWRIGHT
108 %token BLOCK
[all …]
/netbsd/src/external/gpl3/binutils/dist/gold/
Dyyscript.y106 %token <string> STRING
107 %token <string> QUOTED_STRING
108 %token <integer> INTEGER
116 %token ABSOLUTE
117 %token ADDR
118 %token ALIGN_K /* ALIGN */
119 %token ALIGNOF
120 %token ASSERT_K /* ASSERT */
121 %token AS_NEEDED
122 %token AT
[all …]
/netbsd/src/crypto/external/bsd/heimdal/dist/lib/asn1/
Dasn1parse.y89 %token kw_ABSENT
90 %token kw_ABSTRACT_SYNTAX
91 %token kw_ALL
92 %token kw_APPLICATION
93 %token kw_AUTOMATIC
94 %token kw_BEGIN
95 %token kw_BIT
96 %token kw_BMPString
97 %token kw_BOOLEAN
98 %token kw_BY
[all …]
/netbsd/src/lib/libintl/
Dplural_parser.c101 int token; member
110 tcx->token0.token = T_NONE; in init_tokenizer_context()
231 if (tcx->token0.token != T_NONE) { in get_token()
232 int token = tcx->token0.token; in get_token() local
233 tcx->token0.token = T_NONE; in get_token()
235 return token; in get_token()
243 int token, union token_data *token_data) in unget_token() argument
245 tcx->token0.token = token; in unget_token()
256 int token; in main() local
267 token = get_token(&tcx, &token_data); in main()
[all …]
/netbsd/src/external/bsd/wpa/dist/src/utils/
Djson.c191 static int json_check_tree_state(struct json_token *token) in json_check_tree_state() argument
193 if (!token) in json_check_tree_state()
195 if (json_check_tree_state(token->child) < 0 || in json_check_tree_state()
196 json_check_tree_state(token->sibling) < 0) in json_check_tree_state()
198 if (token->state != JSON_COMPLETED) { in json_check_tree_state()
201 token->state, token->name ? token->name : "N/A", in json_check_tree_state()
202 token->type); in json_check_tree_state()
222 struct json_token *root = NULL, *curr_token = NULL, *token = NULL; in json_parse() local
237 token = json_alloc_token(&tokens); in json_parse()
238 if (!token) in json_parse()
[all …]
/netbsd/src/crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/
Dcfx.c321 gss_cfx_wrap_token token; in _gssapi_wrap_cfx_iov() local
452 token = (gss_cfx_wrap_token)header->buffer.value; in _gssapi_wrap_cfx_iov()
454 token->TOK_ID[0] = 0x05; in _gssapi_wrap_cfx_iov()
455 token->TOK_ID[1] = 0x04; in _gssapi_wrap_cfx_iov()
456 token->Flags = 0; in _gssapi_wrap_cfx_iov()
457 token->Filler = 0xFF; in _gssapi_wrap_cfx_iov()
460 token->Flags |= CFXSentByAcceptor; in _gssapi_wrap_cfx_iov()
463 token->Flags |= CFXAcceptorSubkey; in _gssapi_wrap_cfx_iov()
475 token->Flags |= CFXSealed; in _gssapi_wrap_cfx_iov()
476 token->EC[0] = (ec >> 8) & 0xFF; in _gssapi_wrap_cfx_iov()
[all …]
/netbsd/src/external/gpl3/gcc/dist/gcc/
Dgengtype-parse.cc39 struct token struct
45 static struct token T; argument
50 token (void) in token() function
158 int u = token (); in require()
173 int u = token (); in require_without_advance()
189 int u = token (); in require2()
206 int u = token (); in require4()
233 while (token () == STRING) in string_seq()
271 if (token () == ENUM) in require_template_declaration()
277 if (token () == NUM in require_template_declaration()
[all …]
/netbsd/src/external/bsd/ntp/dist/scripts/deprecated/
Dhtml2man.in97 while (my $token = $p->get_token) {
98 if($token->[0] eq "T") {
99 my $text = $token->[1];
116 if($token->[0] eq "S") {
117 if($token->[1] eq "h4") {
132 if($token->[1] eq "tt") {
136 if($token->[1] eq "i") {
140 if($token->[1] eq "address") {
144 if($token->[1] eq "dt" || $token->[1] eq "br" && $deflevel > 0) {
148 if($token->[1] eq "dd") {
[all …]
/netbsd/src/external/cddl/osnet/dist/lib/libdtrace/common/
Ddt_grammar.y50 %token DT_TOK_COMMA DT_TOK_ELLIPSIS
51 %token DT_TOK_ASGN DT_TOK_ADD_EQ DT_TOK_SUB_EQ DT_TOK_MUL_EQ
52 %token DT_TOK_DIV_EQ DT_TOK_MOD_EQ DT_TOK_AND_EQ DT_TOK_XOR_EQ DT_TOK_OR_EQ
53 %token DT_TOK_LSH_EQ DT_TOK_RSH_EQ DT_TOK_QUESTION DT_TOK_COLON
54 %token DT_TOK_LOR DT_TOK_LXOR DT_TOK_LAND
55 %token DT_TOK_BOR DT_TOK_XOR DT_TOK_BAND DT_TOK_EQU DT_TOK_NEQ
56 %token DT_TOK_LT DT_TOK_LE DT_TOK_GT DT_TOK_GE DT_TOK_LSH DT_TOK_RSH
57 %token DT_TOK_ADD DT_TOK_SUB DT_TOK_MUL DT_TOK_DIV DT_TOK_MOD
58 %token DT_TOK_LNEG DT_TOK_BNEG DT_TOK_ADDADD DT_TOK_SUBSUB
59 %token DT_TOK_PREINC DT_TOK_POSTINC DT_TOK_PREDEC DT_TOK_POSTDEC
[all …]
/netbsd/src/external/bsd/am-utils/dist/fsinfo/
Dfsi_gram.y64 %token tARCH
65 %token tAS
66 %token tAUTOMOUNT
67 %token tCLUSTER
68 %token tCONFIG
69 %token tDUMPSET
70 %token tEQ
71 %token tNFSEQ
72 %token tEXPORTFS
73 %token tFREQ
[all …]
/netbsd/src/external/bsd/elftosb/dist/elftosb2/
Delftosb_parser.y76 %token <m_str> TOK_IDENT "identifier"
77 %token <m_str> TOK_STRING_LITERAL "string"
78 %token <m_int> TOK_INT_LITERAL "integer"
79 %token <m_str> TOK_SECTION_NAME "section name"
80 %token <m_str> TOK_SOURCE_NAME "source name"
81 %token <m_blob> TOK_BLOB "binary object"
82 %token '('
83 %token ')'
84 %token '{'
85 %token '}'
[all …]
/netbsd/src/external/gpl3/binutils/dist/binutils/
Darparse.y43 %token NEWLINE
44 %token VERBOSE
45 %token <name> FILENAME
46 %token ADDLIB
47 %token LIST
48 %token ADDMOD
49 %token CLEAR
50 %token CREATE
51 %token DELETE
52 %token DIRECTORY
[all …]
Dmcparse.y53 %token NL
54 %token<ustr> MCIDENT MCFILENAME MCLINE MCCOMMENT
55 %token<tok> MCTOKEN
56 %token MCENDLINE
57 %token MCLANGUAGENAMES MCFACILITYNAMES MCSEVERITYNAMES MCOUTPUTBASE MCMESSAGEIDTYPEDEF
58 %token MCLANGUAGE MCMESSAGEID MCSEVERITY MCFACILITY MCSYMBOLICNAME
59 %token <ival> MCNUMBER
62 %type<ustr> alias_name token lines comments
123 token '=' MCNUMBER alias_name
127 | token '=' error { mc_fatal ("severity number missing"); }
[all …]
/netbsd/src/usr.bin/fgen/
Dfgen.l1082 TOKEN *token;
1087 while ((token = yylex()) != NULL) {
1088 switch (token->type) {
1090 STATE(token->text, "TOK_NUMBER");
1096 push(strtol(token->text, &end, 16));
1099 value = strtol(token->text, &end, numbase);
1126 STATE(token->text, "TOK_C_LIT");
1131 spit(token->text[1]);
1134 STATE(token->text, "TOK_STRING_LIT:");
1137 char *p = token->text;
[all …]
/netbsd/src/external/bsd/libarchive/dist/libarchive/
Darchive_getdate.c54 struct token { int token; time_t value; }; argument
60 struct token *tokenp; /* Pointer to next token. */
103 if (gds->tokenp[0].token == tUNUMBER in timephrase()
104 && gds->tokenp[1].token == ':' in timephrase()
105 && gds->tokenp[2].token == tUNUMBER in timephrase()
106 && gds->tokenp[3].token == ':' in timephrase()
107 && gds->tokenp[4].token == tUNUMBER) { in timephrase()
115 else if (gds->tokenp[0].token == tUNUMBER in timephrase()
116 && gds->tokenp[1].token == ':' in timephrase()
117 && gds->tokenp[2].token == tUNUMBER) { in timephrase()
[all …]
/netbsd/src/external/bsd/atf/dist/tools/
Dparser.hpp98 struct token { struct
105 token(void);
106 token(size_t, const token_type&, const std::string& = "");
134 token m_la;
163 token next(void);
217 token
221 token t = m_la; in next()
222 m_la = token(); in next()
232 token t(m_lineno, m_eof_type, "<<EOF>>"); in next()
242 m_la = token(m_lineno, m_nl_type, "<<NEWLINE>>"); in next()
[all …]
/netbsd/src/external/gpl2/xcvs/dist/lib/
Dregcomp.c58 static Idx fetch_number (re_string_t *input, re_token_t *token,
60 static int peek_token (re_token_t *token, re_string_t *input,
65 re_token_t *token, reg_syntax_t syntax,
68 re_token_t *token, reg_syntax_t syntax,
71 re_token_t *token, reg_syntax_t syntax,
74 re_token_t *token, reg_syntax_t syntax,
77 re_dfa_t *dfa, re_token_t *token,
80 re_token_t *token, reg_syntax_t syntax,
84 re_token_t *token, int token_len,
90 re_token_t *token);
[all …]
/netbsd/src/external/gpl3/gcc/dist/libcpp/
Dmacro.cc132 update_type update (const cpp_token *token) in update() argument
138 if (token->type == CPP_NAME in update()
139 && token->val.node.node == m_pfile->spec_nodes.n__VA_OPT__) in update()
143 cpp_error_at (m_pfile, CPP_DL_ERROR, token->src_loc, in update()
148 m_location = token->src_loc; in update()
149 m_stringify = (token->flags & STRINGIFY_ARG) != 0; in update()
154 if (token->type != CPP_OPEN_PAREN) in update()
183 if (m_state == 2 && token->type == CPP_PASTE) in update()
185 cpp_error_at (m_pfile, CPP_DL_ERROR, token->src_loc, in update()
197 if (token->type == CPP_PASTE) in update()
[all …]
/netbsd/src/sbin/cgdconfig/
Dcgdparse.y53 } token; member
64 %type <token> token deptoken
66 %token <integer> INTEGER
67 %token <string> STRINGLIT
69 %token <token> ALGORITHM KEYLENGTH IVMETHOD VERIFY_METHOD
70 %token <token> KEYGEN SALT ITERATIONS MEMORY PARALLELISM VERSION KEY CMD SHARED
71 %token <token> SUBKEY
73 %token EOL
76 %token <token> KEYGEN_METHOD KEYGEN_SALT KEYGEN_ITERATIONS XOR_KEY
114 tokstr: token { $$ = string_new($1.text, $1.length); }
[all …]
/netbsd/src/external/bsd/byacc/dist/test/
Dok_syntax1.y27 %token DIGIT LETTER
29 %token OCT1 '\177'
30 %token HEX1 '\xff'
31 %token HEX2 '\xFF'
32 %token HEX3 '\x7f'
33 %token STR1 "\x7f\177\\\n"
34 %token STR2 "\x7f\
37 %token BELL '\a'
38 %token BS '\b'
39 %token NL '\n'
[all …]
/netbsd/src/external/bsd/openldap/dist/tests/scripts/
Dtest081-totp.py101 token = get_hotp_token(secret, interval_no-3)
104 bind_conn.bind_s(babsdn, babspw+token)
106 bind_conn.bind_s(babsdn, babspw+token)
113 token = get_hotp_token(secret, interval_no)
116 bind_conn.bind_s(babsdn, babspw+token)
118 bind_conn.bind_s(babsdn, babspw+token)
124 token = get_hotp_token(secret, interval_no+1)
126 bind_conn.bind_s(babsdn, babspw+token)
140 token = get_hotp_token(secret, interval_no)
143 bind_conn.bind_s(bjornsdn, bjornspw+token)
[all …]

12345678910>>...30