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

1234567891011>>

/freebsd-current/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-current/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_syntax7a.y6 %token <text> '\xfff'
H A Derr_syntax7b.y6 %token <text> '\x.'
H A Derr_syntax8a.y6 %token $$123 '\777'
H A Derr_syntax7.y6 %token <text> '\777'
H A Derr_syntax8.y6 %token . '\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-current/contrib/bmake/unit-tests/
H A Dcond-token-string.exp1 make: "cond-token-string.mk" line 15: while evaluating "${:Uvalue:Z}"": Unknown modifier "Z"
2 make: "cond-token-string.mk" line 15: Malformed conditional ("" != "${:Uvalue:Z}")
3 make: "cond-token-string.mk" line 25: xvalue is not defined.
4 make: "cond-token-string.mk" line 32: Malformed conditional (x${:Uvalue} == "")
5 make: "cond-token-string.mk" line 42: Expected.
7 make: "cond-token-string.mk" line 52: The string literal "UNDEF" is not empty.
9 make: "cond-token-string.mk" line 61: The string literal " " is not empty, even though it consists of whitespace only.
11 make: "cond-token-string.mk" line 71: An undefined variable in quotes expands to an empty string, which then evaluates to false.
13 make: "cond-token-string.mk" line 77: A nonempty expression evaluates to true.
15 make: "cond-token
[all...]
/freebsd-current/usr.bin/localedef/
H A Dparser.y45 char *token;
50 %token T_CODE_SET
51 %token T_MB_CUR_MAX
52 %token T_MB_CUR_MIN
53 %token T_COM_CHAR
54 %token T_ESC_CHAR
55 %token T_LT
56 %token T_GT
57 %token T_NL
58 %token T_SEM
[all...]
/freebsd-current/sys/powerpc/powernv/
H A Dopal_async.c56 /* Setup the token pool. */
78 vmem_addr_t token; local
80 vmem_alloc(async_token_pool, 1, M_FIRSTFIT | M_WAITOK, &token);
81 completions[token].completed = false;
83 return (token);
87 opal_free_async_token(int token) argument
90 vmem_free(async_token_pool, token, 1);
94 * Wait for the operation watched by the token to complete. Return the result
98 opal_wait_completion(void *buf, uint64_t size, int token) argument
104 vtophys(buf), size, token);
120 int token; local
[all...]
/freebsd-current/sbin/dhclient/
H A Dparse.c54 * leaving the brace in the token buffer for the caller. If we see a
68 int brace_count = 0, token; local
72 token = peek_token(&val, cfile);
73 if (token == RBRACE) {
75 token = next_token(&val, cfile);
80 } else if (token == LBRACE) {
82 } else if (token == SEMI && !brace_count) {
83 token = next_token(&val, cfile);
85 } else if (token == '\n') {
92 token
102 int token; local
122 int token; local
161 int token; local
222 int token; local
250 int token; local
445 int token; local
[all...]
H A Dclparse.c65 int token; local
110 token = peek_token(&val, cfile);
111 if (token == EOF)
115 token = next_token(&val, cfile); /* Clear the peek buffer */
154 int token; local
163 token = next_token(&val, cfile);
164 if (token == EOF)
166 if (token != LEASE) {
304 int token; local
308 token
354 int token; local
397 int token; local
497 int token; local
624 int token; local
687 int token; local
888 int token; local
934 int token; local
[all...]
/freebsd-current/sys/contrib/dev/mediatek/mt76/mt7615/
H A Dmt7615_trace.h22 #define TOKEN_ENTRY __field(u16, token)
23 #define TOKEN_ASSIGN __entry->token = token
25 #define TOKEN_PR_ARG __entry->token
28 TP_PROTO(struct mt7615_dev *dev, u16 token),
29 TP_ARGS(dev, token),
45 TP_PROTO(struct mt7615_dev *dev, u16 token),
46 TP_ARGS(dev, token)
/freebsd-current/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-current/usr.bin/rpcgen/
H A Drpc_scan.h113 * a token
115 struct token { struct
119 typedef struct token token; typedef in typeref:struct:token
125 void scan(tok_kind expect, token *tokp);
126 void scan2(tok_kind expect1, tok_kind expect2, token *tokp);
127 void scan3(tok_kind expect1, tok_kind expect2, tok_kind expect3, token *tokp);
128 void scan_num(token *tokp);
129 void peek(token *tokp);
130 int peekscan(tok_kind expect, token *tok
[all...]
/freebsd-current/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-current/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-current/tools/test/stress2/misc/
H A Dcontext2.sh56 * Pass a token thru pipes to NTHREADS+1 threads in a circular list.
80 int token;
84 if (read(fds[i][0], &token, sizeof(token)) != sizeof(token))
86 token++;
87 if (write(fds[i+1][1], &token, sizeof(token)) != sizeof(token))
99 int i, r, token;
[all...]
H A Dpipe2.sh88 int token;
97 token = 0;
98 write(fds[1], &token, sizeof(token));
104 if (read(fds[0], &token, sizeof(token)) != sizeof(token))
109 token++;
110 if (write(fds[1], &token, sizeof(token)) !
[all...]
H A Dcontext.sh58 * Pass a token thru pipes to CHILDREN+1 processes in a circular list
88 int token;
106 if (read(fds[i][0], &token, sizeof(token))
107 != sizeof(token))
109 if (write(fds[i+1][1], &token, sizeof(token))
110 != sizeof(token))
118 token = j;
119 if (write(fds[0][1], &token, sizeo
[all...]
/freebsd-current/sys/powerpc/pseries/
H A Drtas_dev.c106 cell_t token; local
109 token = rtas_token_lookup("get-time-of-day");
110 if (token == -1)
112 error = rtas_call_method(token, 0, 8, &tod[0], &tod[1], &tod[2],
134 cell_t token, status; local
137 token = rtas_token_lookup("set-time-of-day");
138 if (token == -1)
142 error = rtas_call_method(token, 7, 1, ct.year, ct.mon, ct.day, ct.hour,
155 cell_t token, status; local
158 token
[all...]

Completed in 199 milliseconds

1234567891011>>