Searched refs:token (Results 1 – 14 of 14) sorted by relevance
| /third_party/lib/acpica/source/compiler/ |
| A D | asltokens.y | 74 %token <i> PARSEOP_ADD 82 %token <i> PARSEOP_AND 83 %token <i> PARSEOP_ARG0 84 %token <i> PARSEOP_ARG1 85 %token <i> PARSEOP_ARG2 86 %token <i> PARSEOP_ARG3 87 %token <i> PARSEOP_ARG4 133 %token <i> PARSEOP_DMA 169 %token <i> PARSEOP_IF 182 %token <i> PARSEOP_IO [all …]
|
| A D | prparser.y | 89 %token <op> EXPOP_EOF 90 %token <op> EXPOP_NEW_LINE 91 %token <op> EXPOP_NUMBER 92 %token <op> EXPOP_HEX_NUMBER 93 %token <op> EXPOP_RESERVED1 94 %token <op> EXPOP_RESERVED2 95 %token <op> EXPOP_PAREN_OPEN 96 %token <op> EXPOP_PAREN_CLOSE 112 %token <op> EXPOP_DEFINE 113 %token <op> EXPOP_IDENTIFIER
|
| A D | dtparser.y | 89 %token <op> EXPOP_EOF 90 %token <op> EXPOP_NEW_LINE 91 %token <op> EXPOP_NUMBER 92 %token <op> EXPOP_HEX_NUMBER 93 %token <op> EXPOP_DECIMAL_NUMBER 94 %token <op> EXPOP_LABEL 95 %token <op> EXPOP_PAREN_OPEN 96 %token <op> EXPOP_PAREN_CLOSE
|
| /third_party/ulib/jemalloc/test/unit/ |
| A D | stats_print.c | 37 token_t token; member 44 token->parser = parser; in token_init() 46 token->pos = pos; in token_init() 47 token->len = len; in token_init() 48 token->line = line; in token_init() 49 token->col = col; in token_init() 53 token_error(token_t *token) in token_error() argument 58 switch (token->token_type) { in token_error() 63 token->line, token->col); in token_error() 67 token->col); in token_error() [all …]
|
| /third_party/uapp/dash/src/ |
| A D | tab.c | 40 token_t token = { in tokenize() local 49 token.start = i + 1; in tokenize() 51 if (in_token && !token.in_env) { in tokenize() 52 token.found_command = true; in tokenize() 56 token.in_env = false; in tokenize() 61 token.in_env = token.in_env || line[i] == '='; in tokenize() 64 return token; in tokenize() 111 if (token.in_env) { in tab_complete() 122 char* partial_path = buf + token.start; in tab_complete() 156 if (token.found_command) { in tab_complete() [all …]
|
| A D | arith_yacc.c | 142 switch (token) { in primary() 156 token = op; in primary() 180 int token; in binop2() local 182 token = yylex(); in binop2() 224 token = yylex(); in and() 227 b = and(token, val, yylex(), noeval | !a); in and() 234 intmax_t a = and(token, val, op, noeval); in or() 241 token = yylex(); in or() 244 b = or(token, val, yylex(), noeval | !!a); in or() 251 intmax_t a = or(token, val, op, noeval); in cond() [all …]
|
| A D | mktokens | 72 exec > token.h
|
| A D | process.c | 42 addfuncdef(struct cmdentry *entry, void *token) in addfuncdef() argument 45 struct nodelist **cmdlist = (struct nodelist **) token; in addfuncdef()
|
| A D | parser.c | 767 #define RETURN(token) return lasttoken = token argument 1473 synexpect(int token) in synexpect() argument 1477 if (token >= 0) { in synexpect() 1479 tokname[lasttoken], tokname[token]); in synexpect()
|
| A D | exec.c | 224 hashiter(void (*fn) (struct cmdentry *, void *), void *token) in hashiter() argument 233 fn(&entry, token); in hashiter()
|
| A D | TOUR | 31 mktokens - token.h
|
| /third_party/uapp/dash/src/bltin/ |
| A D | test.c | 39 enum token { enum 140 static int oexpr(enum token); 141 static int aexpr(enum token); 142 static int nexpr(enum token); 143 static int primary(enum token); 187 enum token n; in testcmd() 252 oexpr(enum token n) in oexpr() 267 aexpr(enum token n) in aexpr() 283 nexpr(enum token n) in nexpr() 295 primary(enum token n) in primary() [all …]
|
| /third_party/ulib/lz4/ |
| A D | lz4.c | 498 BYTE* token; in LZ4_compress_generic() local 541 token = op++; in LZ4_compress_generic() 591 *token += ML_MASK; in LZ4_compress_generic() 627 { token=op++; *token=0; goto _next_match; } in LZ4_compress_generic() 766 BYTE* token; in LZ4_compress_destSize_generic() local 796 token = op++; in LZ4_compress_destSize_generic() 837 *token += ML_MASK; in LZ4_compress_destSize_generic() 859 { token=op++; *token=0; goto _next_match; } in LZ4_compress_destSize_generic() 1161 unsigned token; in LZ4_decompress_generic() local 1166 token = *ip++; in LZ4_decompress_generic() [all …]
|
| A D | lz4hc.c | 300 BYTE* token; in LZ4HC_encodeSequence() local 308 token = (*op)++; in LZ4HC_encodeSequence() 310 …if (length>=(int)RUN_MASK) { int len; *token=(RUN_MASK<<ML_BITS); len = length-RUN_MASK; for(; len… in LZ4HC_encodeSequence() 311 else *token = (BYTE)(length<<ML_BITS); in LZ4HC_encodeSequence() 323 …if (length>=(int)ML_MASK) { *token+=ML_MASK; length-=ML_MASK; for(; length > 509 ; length-=510) { … in LZ4HC_encodeSequence() 324 else *token += (BYTE)(length); in LZ4HC_encodeSequence()
|
Completed in 663 milliseconds