HomeSort by: relevance | last modified time | path
    Searched refs:token (Results 1 - 25 of 167) sorted by relevancy

1 2 3 4 5 6 7

  /src/sys/external/bsd/acpica/dist/compiler/
asltokens.y 4 * Module Name: asltokens.y - Bison/Yacc token types
157 * Token types: These are returned by the lexer
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_PROCES
    [all...]
prparser.y 198 %token <op> EXPOP_EOF
199 %token <op> EXPOP_NEW_LINE
200 %token <op> EXPOP_NUMBER
201 %token <op> EXPOP_HEX_NUMBER
202 %token <op> EXPOP_RESERVED1
203 %token <op> EXPOP_RESERVED2
204 %token <op> EXPOP_PAREN_OPEN
205 %token <op> EXPOP_PAREN_CLOSE
221 %token <op> EXPOP_DEFINE
222 %token <op> EXPOP_IDENTIFIE
    [all...]
dtparser.y 198 %token <op> OP_EXP_EOF
199 %token <op> OP_EXP_NEW_LINE
200 %token <op> OP_EXP_NUMBER
201 %token <op> OP_EXP_HEX_NUMBER
202 %token <op> OP_EXP_DECIMAL_NUMBER
203 %token <op> OP_EXP_LABEL
204 %token <op> OP_EXP_PAREN_OPEN
205 %token <op> OP_EXP_PAREN_CLOSE
334 * PARAMETERS: ParseOpcode - Parser token (OP_EXP_*)
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_symbolizer_test.cc 21 char *token; local in function:__sanitizer::TEST
24 rest = ExtractToken("a;b;c", ";", &token);
25 EXPECT_STREQ("a", token);
27 InternalFree(token);
29 rest = ExtractToken("aaa-bbb.ccc", ";.-*", &token);
30 EXPECT_STREQ("aaa", token);
32 InternalFree(token);
36 int token; local in function:__sanitizer::TEST
37 const char *rest = ExtractInt("123,456;789", ";,", &token);
38 EXPECT_EQ(123, token);
43 uptr token; local in function:__sanitizer::TEST
50 char *token; local in function:__sanitizer::TEST
    [all...]
  /src/bin/sh/
arith_token.c 65 * Scan next arithmetic token, return its type,
69 * refer to the next char after the token returned, except
75 int token; local in function:arith_token
81 token = *buf;
83 if (isdigit(token)) {
91 token = *end;
96 "%.*s", token, (int)(end - buf), buf);
99 VTRACE(DBG_ARITH, ("Arith token ARITH_NUM=%jd\n",
103 } else if (is_name(token)) {
117 VTRACE(DBG_ARITH, ("Arith token ARITH_VAR=\"%s\"\n"
    [all...]
arithmetic.c 164 arith_err("token error");
207 primary(int token, union a_token_val *val, int op, int noeval)
212 VTRACE(DBG_ARITH, ("Arith primary: token %d op %d%s\n",
213 token, op, noeval ? " noeval" : ""));
215 switch (token) {
259 result += (token == ARITH_INCR ? 1 : -1));
274 int token; local in function:binop2
280 token = arith_token();
283 b = primary(token, &val, arith_token(), noeval);
303 binop(int token, union a_token_val *val, int op, int noeval
    [all...]
  /src/usr.bin/rpcgen/
rpc_scan.h 90 * a token
92 struct token { struct
96 typedef struct token token; typedef in typeref:struct:token
102 void scan(tok_kind, token *);
103 void scan2(tok_kind, tok_kind, token *);
104 void scan3(tok_kind, tok_kind, tok_kind, token *);
105 void scan_num(token *);
106 void peek(token *);
107 int peekscan(tok_kind, token *);
    [all...]
rpc_scan.c 60 static void unget_token(token *);
64 static void findkind(char **, token *);
70 static int pushed = 0; /* is a token pushed */
71 static token lasttok; /* last token, if pushed */
74 * scan expecting 1 given token
77 scan(tok_kind expect, token *tokp)
88 scan2(tok_kind expect1, tok_kind expect2, token *tokp)
96 * scan expecting any of the 3 given token
99 scan3(tok_kind expect1, tok_kind expect2, tok_kind expect3, token *tokp
    [all...]
  /src/usr.sbin/npf/npfctl/
npf_parse.y 91 * Workaround yacc limitation by passing the start token.
94 %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 ARROWRIGH
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvif/
nouveau_nvif_userc361.c 30 nvif_userc361_doorbell(struct nvif_user *user, u32 token)
32 nvif_wr32(&user->object, 0x90, token);
  /src/usr.bin/msgc/
msgparse.y 53 %token MESSAGE
54 %token <s_value> NAME VALUE
  /src/usr.bin/make/unit-tests/
cond-token-number.exp 1 make: cond-token-number.mk:16: Malformed conditional "-0"
2 make: cond-token-number.mk:27: Malformed conditional "+0"
3 make: cond-token-number.mk:38: Malformed conditional "!-1"
4 make: cond-token-number.mk:49: Malformed conditional "!+1"
cond-token-var.exp 1 make: cond-token-var.mk:23: ok
2 make: cond-token-var.mk:30: Variable "UNDEF" is undefined
3 make: cond-token-var.mk:36: Variable "UNDEF" is undefined
4 make: cond-token-var.mk:46: Variable "UNDEF" is undefined
5 make: cond-token-var.mk:64: Variable "U" is undefined
6 make: cond-token-var.mk:69: Variable "U" is undefined
7 make: cond-token-var.mk:78: Variable "U" is undefined
9 make: cond-token-var.mk:106: Malformed conditional "x${UNDEF1}y == "${UNDEF2}" || 0x${UNDEF3}"
11 make: cond-token-var.mk:111: Malformed conditional "x${DEF}y == "${UNDEF2}" || 0x${UNDEF3}"
13 make: cond-token-var.mk:116: Malformed conditional "x${DEF}y == "${DEF}" || 0x${UNDEF3}
    [all...]
cond-token-plain.exp 4 make: cond-token-plain.mk:19: Unfinished string literal """
9 make: cond-token-plain.mk:43: Unfinished string literal ""\\"
32 make: cond-token-plain.mk:106: A bare word is treated like defined(...), and the variable 'bare' is not defined.
34 make: cond-token-plain.mk:113: A bare word is treated like defined(...).
36 make: cond-token-plain.mk:121: ok
38 make: cond-token-plain.mk:130: Undefined variables in bare words expand to an empty string.
40 make: cond-token-plain.mk:139: Numbers can be composed from literals and expressions.
42 make: cond-token-plain.mk:144: Numbers can be composed from literals and expressions.
44 make: cond-token-plain.mk:151: Missing right-hand side of operator "=="
46 make: cond-token-plain.mk:160: Malformed conditional "== ""
    [all...]
cond-token-string.exp 1 make: cond-token-string.mk:14: Unknown modifier ":Z"
3 make: cond-token-string.mk:24: xvalue is not defined.
4 make: cond-token-string.mk:31: Malformed conditional "x${:Uvalue} == """
5 make: cond-token-string.mk:41: Expected.
7 make: cond-token-string.mk:51: The string literal "UNDEF" is not empty.
9 make: cond-token-string.mk:60: The string literal " " is not empty, even though it consists of whitespace only.
11 make: cond-token-string.mk:70: An undefined variable in quotes expands to an empty string, which then evaluates to false.
13 make: cond-token-string.mk:76: A nonempty expression evaluates to true.
15 make: cond-token-string.mk:85: An empty variable evaluates to false.
sh-errctl.exp 3 TokenPool_Take: pid <pid> took a token
26 TokenPool_Take: pid <pid> took a token
  /src/usr.bin/fgen/
fgen.l 37 #define TOKEN struct tok
72 static TOKEN ltoken;
104 #define STATE(y, x) do { if (debug) printf("%lx State %s: token `%s'\n", outpos, x, y); } while (0)
492 { "set-token-table", 0x00b3, 0, NULL, NULL },
494 { "new-token", 0x00b5, 0, NULL, NULL },
495 { "named-token", 0x00b6, 0, NULL, NULL },
514 { "external-token", 0x00ca, 0, NULL, NULL },
526 { "get-token", 0x00da, 0, NULL, NULL },
527 { "set-token", 0x00db, 0, NULL, NULL },
1082 TOKEN *token
    [all...]
  /src/sbin/cgdconfig/
cgdparse.y 53 } token;
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> SUBKE
116 token: ALGORITHM | KEYLENGTH label
    [all...]
  /src/lib/libintl/
plural_parser.c 101 int token; member in struct:tokenizer_context::__anonc967bf9d0108
110 tcx->token0.token = T_NONE;
227 /* get the next token */
231 if (tcx->token0.token != T_NONE) {
232 int token = tcx->token0.token; local in function:get_token
233 tcx->token0.token = T_NONE;
235 return token;
240 /* push back the last token */
243 int token, union token_data *token_data
256 int token; local in function:main
468 int token; local in function:parse_term
509 int token; local in function:parse_lnot
540 int token; local in function:parse_op2
588 int token; local in function:parse_cond
641 int token, token1; local in function:parse_exp
760 int token; local in function:main
856 int token; local in function:main
1003 int token; local in function:parse_plural_body
    [all...]
  /src/usr.bin/indent/
lexi.c 182 buf_add_char(&token, ch);
236 for (char delim = token.s[token.len - 1];;) {
243 if (token.s[token.len - 1] == delim)
246 if (token.s[token.len - 1] == '\\') {
254 /* Guess whether the current token is a declared type. */
302 token.len >= 2 && memcmp(token.s + token.len - 2, "_t", 2) == 0
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvif/
clc36f.h 16 __u32 token; member in struct:volta_channel_gpfifo_a_v0
user.h 14 void (*doorbell)(struct nvif_user *, u32 token);
event.h 13 __u64 token; /* must be unique */ member in struct:nvif_notify_req_v0
21 __u64 token; member in struct:nvif_notify_rep_v0
  /src/usr.bin/ctags/
C.c 66 int token; /* if reading a token */ local in function:c_entries
70 char tok[MAXTOKEN]; /* token buffer */
73 sp = tok; token = t_def = NO; t_level = -1; level = 0; lineno = 1;
107 token = YES;
111 token = NO;
149 * if we have a current token, parenthesis on
159 if (!level && token) {
190 * If looking at a typedef, we save a copy of the last token
192 * token if it starts with a valid token name, else we tak
    [all...]
  /src/usr.sbin/faithd/
prefix.c 194 char *token[4]; local in function:config_load1
212 memset(token, 0, sizeof(token));
213 for (i = 0; i < sizeof(token) / sizeof(token[0]); i++) {
214 token[i] = strtok(p, "\t ");
216 if (token[i] == NULL)
236 if (strcasecmp(token[1], "permit") == 0)
238 else if (strcasecmp(token[1], "deny") == 0)
245 if (prefix_set(token[0], &conf->match, 1) < 0
    [all...]

Completed in 49 milliseconds

1 2 3 4 5 6 7