Searched refs:token (Results 1 - 25 of 504) sorted by relevance

1234567891011>>

/freebsd-13-stable/sys/contrib/dev/acpica/compiler/
H A Dasltokens.y4 * Module Name: asltokens.y - Bison/Yacc token types
174 %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 <
[all...]
/freebsd-13-stable/contrib/byacc/test/
H A Derr_syntax3.y6 %token <text> '(' '*' '&
H A Derr_syntax6.y6 %token <text) '(' '*' '&
H A Derr_syntax10.y6 %token <text> '(' '*' '&'
7 %token <TEXT> '(' '*' '&'
H A Derr_syntax12.y6 %token text 123
7 %token text 456
H A Derr_syntax7.y6 %token <text> '\777'
H A Derr_syntax7a.y6 %token <text> '\xfff'
H A Derr_syntax7b.y6 %token <text> '\x.'
H A Derr_syntax8.y6 %token . '\777'
H A Derr_syntax8a.y6 %token $$123 '\777'
H A Dok_syntax1.y25 %token DIGIT LETTER
27 %token OCT1 '\177'
28 %token HEX1 '\xff'
29 %token HEX2 '\xFF'
30 %token HEX3 '\x7f'
31 %token STR1 "\x7f\177\\\n"
32 %token STR2 "\x7f\
35 %token BELL '\a'
36 %token BS '\b'
37 %token N
[all...]
/freebsd-13-stable/usr.bin/localedef/
H A Dparser.y47 char *token;
52 %token T_CODE_SET
53 %token T_MB_CUR_MAX
54 %token T_MB_CUR_MIN
55 %token T_COM_CHAR
56 %token T_ESC_CHAR
57 %token T_LT
58 %token T_GT
59 %token T_NL
60 %token T_SEM
[all...]
/freebsd-13-stable/sys/powerpc/powernv/
H A Dopal_async.c59 /* Setup the token pool. */
81 vmem_addr_t token; local
83 vmem_alloc(async_token_pool, 1, M_FIRSTFIT | M_WAITOK, &token);
84 completions[token].completed = false;
86 return (token);
90 opal_free_async_token(int token) argument
93 vmem_free(async_token_pool, token, 1);
97 * Wait for the operation watched by the token to complete. Return the result
101 opal_wait_completion(void *buf, uint64_t size, int token) argument
107 vtophys(buf), size, token);
123 int token; local
[all...]
/freebsd-13-stable/sbin/dhclient/
H A Dparse.c56 * leaving the brace in the token buffer for the caller. If we see a
70 int brace_count = 0, token; local
74 token = peek_token(&val, cfile);
75 if (token == RBRACE) {
77 token = next_token(&val, cfile);
82 } else if (token == LBRACE) {
84 } else if (token == SEMI && !brace_count) {
85 token = next_token(&val, cfile);
87 } else if (token == '\n') {
94 token
104 int token; local
124 int token; local
163 int token; local
224 int token; local
252 int token; local
449 int guess, token; local
[all...]
H A Dclparse.c67 int token; local
111 token = peek_token(&val, cfile);
112 if (token == EOF)
116 token = next_token(&val, cfile); /* Clear the peek buffer */
155 int token; local
164 token = next_token(&val, cfile);
165 if (token == EOF)
167 if (token != LEASE) {
201 int token; local
291 token
301 int token; local
351 int token; local
394 int token; local
494 int token; local
621 int token; local
684 int token; local
885 int token; local
931 int token; local
[all...]
/freebsd-13-stable/contrib/apr/strings/
H A Dapr_strtok.c29 char *token; local
41 token = str;
43 /* skip valid token characters to terminate token and
46 *last = token + 1;
55 return token;
/freebsd-13-stable/sys/dev/ispfw/
H A Dispfw.c66 #define RMACRO(token) do { \
67 if (token##_loaded) \
69 if (firmware_register(#token, token##_risc_code, \
70 token##_risc_code[3] * sizeof(token##_risc_code[3]), \
73 token##_loaded++; \
76 #define UMACRO(token) do { \
77 if (!token##_loaded) \
79 if (firmware_unregister(#token) !
[all...]
/freebsd-13-stable/lib/libpmc/pmu-events/
H A Djsmn.c32 * Allocates a fresh unused token from the token pool.
48 * Fills token type and boundaries.
50 static void jsmn_fill_token(jsmntok_t *token, jsmntype_t type, argument
53 token->type = type;
54 token->start = start;
55 token->end = end;
56 token->size = 0;
60 * Fills next available token with JSON primitive.
66 jsmntok_t *token; local
123 jsmntok_t *token; local
181 jsmntok_t *token; local
[all...]
/freebsd-13-stable/sys/contrib/rdma/krping/
H A Dgetopt.c33 char *token; local
37 if ((token = strsep(options, ",")) == NULL)
39 } while (*token == '\0');
41 *optopt = token;
43 if ((val = strchr (token, '=')) != NULL) {
48 if (!strcmp(opts->name, token)) {
54 "an argument\n", caller, token);
65 "in %s=%s\n", caller, token, val);
72 "%s option\n", caller, val, token);
76 printk(KERN_INFO "%s: Unrecognized option %s\n", caller, token);
[all...]
/freebsd-13-stable/usr.bin/rpcgen/
H A Drpc_scan.h118 * a token
120 struct token { struct
124 typedef struct token token; typedef in typeref:struct:token
130 void scan(tok_kind expect, token *tokp);
131 void scan2(tok_kind expect1, tok_kind expect2, token *tokp);
132 void scan3(tok_kind expect1, tok_kind expect2, tok_kind expect3, token *tokp);
133 void scan_num(token *tokp);
134 void peek(token *tokp);
135 int peekscan(tok_kind expect, token *tok
[all...]
/freebsd-13-stable/contrib/ntp/scripts/deprecated/
H A Dhtml2man.in94 # $token->[0] has "T", "S", "E" for Text, Start, End
95 # $token->[1] has the tag name, or text (for "T" case)
97 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
[all...]
/freebsd-13-stable/contrib/ntp/libjsmn/
H A Djsmn.c6 * Allocates a fresh unused token from the token pull.
24 * Fills token type and boundaries.
26 static void jsmn_fill_token(jsmntok_t *token, jsmntype_t type, argument
28 token->type = type;
29 token->start = start;
30 token->end = end;
31 token->size = 0;
35 * Fills next available token with JSON primitive.
39 jsmntok_t *token; local
88 jsmntok_t *token; local
157 jsmntok_t *token; local
[all...]
/freebsd-13-stable/contrib/googletest/googlemock/scripts/generator/cpp/
H A Dkeywords.py52 def IsKeyword(token):
53 return token in ALL
55 def IsBuiltinType(token):
56 if token in ('virtual', 'inline'):
59 return token in TYPES or token in TYPE_MODIFIERS
/freebsd-13-stable/contrib/wpa/src/utils/
H A Djson.c191 static int json_check_tree_state(struct json_token *token) argument
193 if (!token)
195 if (json_check_tree_state(token->child) < 0 ||
196 json_check_tree_state(token->sibling) < 0)
198 if (token->state != JSON_COMPLETED) {
200 "JSON: Unexpected token state %d (name=%s type=%d)",
201 token->state, token->name ? token->name : "N/A",
202 token
222 struct json_token *root = NULL, *curr_token = NULL, *token = NULL; local
493 struct json_token *token, *ret = NULL; local
509 struct json_token *token; local
551 json_print_token(struct json_token *token, int depth, char *buf, size_t buflen) argument
[all...]
/freebsd-13-stable/contrib/subversion/subversion/libsvn_diff/
H A Dtoken.c2 * token.c : routines for doing diffs
50 void *token; member in struct:svn_diff__node_t
71 * Support functions to build a tree of token positions
87 apr_uint32_t hash, void *token)
94 SVN_ERR_ASSERT(token);
105 SVN_ERR(vtable->token_compare(diff_baton, parent->token, token, &rv));
109 /* Discard the previous token. This helps in cases where
113 vtable->token_discard(diff_baton, parent->token);
115 parent->token
84 tree_insert_token(svn_diff__node_t **node, svn_diff__tree_t *tree, void *diff_baton, const svn_diff_fns2_t *vtable, apr_uint32_t hash, void *token) argument
162 void *token; local
[all...]

Completed in 174 milliseconds

1234567891011>>