Searched refs:token (Results 26 - 50 of 473) sorted by relevance

1234567891011>>

/freebsd-current/contrib/byacc/test/
H A Dquote_calc4.y15 %token OP_ADD "ADD-operator"
16 %token OP_SUB "SUB-operator"
17 %token OP_MUL "MUL-operator"
18 %token OP_DIV "DIV-operator"
19 %token OP_MOD "MOD-operator"
20 %token OP_AND "AND-operator"
22 %token DIGIT LETTER
H A Dquote_calc3.y15 %token OP_ADD "ADD-operator"
16 %token OP_SUB "SUB-operator"
17 %token OP_MUL "MUL-operator"
18 %token OP_DIV "DIV-operator"
19 %token OP_MOD "MOD-operator"
20 %token OP_AND "AND-operator"
22 %token DIGIT LETTER
H A Dquote_calc.y15 %token OP_ADD "ADD"
16 %token OP_SUB "SUB"
17 %token OP_MUL "MUL"
18 %token OP_DIV "DIV"
19 %token OP_MOD "MOD"
20 %token OP_AND "AND"
22 %token DIGIT LETTER
H A Dquote_calc2.y15 %token OP_ADD "ADD"
16 %token OP_SUB "SUB"
17 %token OP_MUL "MUL"
18 %token OP_DIV "DIV"
19 %token OP_MOD "MOD"
20 %token OP_AND "AND"
22 %token DIGIT LETTER
H A Dinherit0.y12 %token GLOBAL LOCAL
13 %token REAL INTEGER
14 %token NAME
H A Derr_syntax16.y6 %token second
H A Derr_syntax13.y6 %token text 123
H A Derr_syntax9.y7 %token text '(' '*' '&'
H A Derr_syntax22.y11 %token NUMBER
/freebsd-current/crypto/heimdal/lib/hx509/
H A Dsel-gram.y50 %token kw_TRUE
51 %token kw_FALSE
52 %token kw_AND
53 %token kw_OR
54 %token kw_IN
55 %token kw_TAILMATCH
65 %token <string> NUMBER
66 %token <string> STRING
67 %token <string> IDENTIFIER
/freebsd-current/contrib/ldns/
H A Dparse.c25 ldns_fget_token(FILE *f, char *token, const char *delim, size_t limit) argument
27 return ldns_fget_token_l(f, token, delim, limit, NULL);
35 ldns_fget_token_l_st_file_type(FILE *f, char **token, size_t *limit, argument
54 if (!token || !limit)
58 if (*token == NULL || *limit == 0)
61 } else if (*token == NULL) {
63 if (!(*token = LDNS_XMALLOC(char, *limit + 1)))
73 t = *token;
138 if (c == '\n' && p != 0 && t > *token) {
144 && (i >= *limit || (size_t)(t - *token) >
226 ldns_fget_token_l_st(FILE *f, char **token, size_t *limit, bool fixed , const char *delim, int *line_nr) argument
234 ldns_fget_token_l_resolv_conf(FILE *f, char *token, const char *delim, size_t limit, int *line_nr) argument
247 ldns_fget_token_l(FILE *f, char *token, const char *delim, size_t limit, int *line_nr) argument
301 ldns_bget_token(ldns_buffer *b, char *token, const char *delim, size_t limit) argument
[all...]
/freebsd-current/lib/libpmc/pmu-events/
H A Djsmn.c31 * Allocates a fresh unused token from the token pool.
47 * Fills token type and boundaries.
49 static void jsmn_fill_token(jsmntok_t *token, jsmntype_t type, argument
52 token->type = type;
53 token->start = start;
54 token->end = end;
55 token->size = 0;
59 * Fills next available token with JSON primitive.
65 jsmntok_t *token; local
122 jsmntok_t *token; local
180 jsmntok_t *token; local
[all...]
/freebsd-current/sys/dev/ispfw/
H A Dispfw.c84 #define RMACRO(token) do { \
85 if (token##_loaded) \
87 if (firmware_register(#token, token##_risc_code, \
88 token##_risc_code[3] * sizeof(token##_risc_code[3]), \
91 token##_loaded++; \
94 #define UMACRO(token) do { \
95 if (!token##_loaded) \
97 if (firmware_unregister(#token) !
[all...]
/freebsd-current/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
495 struct json_token *token, *ret = NULL; local
511 struct json_token *token; local
534 struct json_token *token; local
575 json_print_token(struct json_token *token, int depth, char *buf, size_t buflen) argument
[all...]
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/
H A Drsend_030_pos.ksh51 token=$(get_prop receive_resume_token $recvfs)
52 log_must eval "zfs send -t $token >/$streamfs/2"
61 token=$(get_prop receive_resume_token $recvfs)
62 log_must eval "zfs send -t $token >/$streamfs/4"
/freebsd-current/crypto/heimdal/lib/gssapi/krb5/
H A Dcfx.c291 gss_cfx_wrap_token token;
422 token = (gss_cfx_wrap_token)header->buffer.value;
424 token->TOK_ID[0] = 0x05;
425 token->TOK_ID[1] = 0x04;
426 token->Flags = 0;
427 token->Filler = 0xFF;
430 token->Flags |= CFXSentByAcceptor;
433 token->Flags |= CFXAcceptorSubkey;
445 token->Flags |= CFXSealed;
446 token
1168 gss_cfx_wrap_token token; local
1378 gss_cfx_wrap_token token; local
1583 gss_cfx_mic_token token; local
1664 gss_cfx_mic_token token; local
[all...]
/freebsd-current/crypto/heimdal/lib/asn1/
H A Dasn1parse.y86 %token kw_ABSENT
87 %token kw_ABSTRACT_SYNTAX
88 %token kw_ALL
89 %token kw_APPLICATION
90 %token kw_AUTOMATIC
91 %token kw_BEGIN
92 %token kw_BIT
93 %token kw_BMPString
94 %token kw_BOOLEAN
95 %token kw_B
[all...]
/freebsd-current/usr.bin/ctags/
H A DC.c54 int token; /* if reading a token */ local
58 char tok[MAXTOKEN]; /* token buffer */
61 sp = tok; token = t_def = false; t_level = -1; level = 0; lineno = 1;
95 token = true;
99 token = false;
134 * if we have a current token, parenthesis on
138 if (!level && token) {
169 * If looking at a typedef, we save a copy of the last token
171 * token i
[all...]
/freebsd-current/contrib/ldns/ldns/
H A Dparse.h48 * returns a token/char from the stream F.
52 * \param[out] *token the read token is put here
57 ssize_t ldns_fget_token(FILE *f, char *token, const char *delim, size_t limit);
60 * returns a token/char from the stream F.
64 * \param[out] *token the token is put here
70 ssize_t ldns_fget_token_l(FILE *f, char *token, const char *delim, size_t limit, int *line_nr);
73 * returns a token/char from the stream f.
77 * \param[out] **token thi
[all...]
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_getdate.c54 struct token { int token; time_t value; }; member in struct:token
60 struct token *tokenp; /* Pointer to next token. */
103 if (gds->tokenp[0].token == tUNUMBER
104 && gds->tokenp[1].token == ':'
105 && gds->tokenp[2].token == tUNUMBER
106 && gds->tokenp[3].token == ':'
107 && gds->tokenp[4].token == tUNUMBER) {
115 else if (gds->tokenp[0].token
[all...]
/freebsd-current/usr.sbin/config/
H A Dconfig.y7 %token ARCH
8 %token COMMA
9 %token CONFIG
10 %token CPU
11 %token NOCPU
12 %token DEVICE
13 %token NODEVICE
14 %token ENV
15 %token ENVVAR
16 %token EQUAL
[all...]
/freebsd-current/usr.sbin/apmd/
H A Dapmdparse.y56 %token BEGINBLOCK ENDBLOCK
57 %token COMMA SEMICOLON
58 %token APMEVENT
59 %token APMBATT
60 %token BATTCHARGE BATTDISCHARGE
61 %token <i> BATTTIME BATTPERCENT
62 %token EXECCMD REJECTCMD
63 %token <ev> EVENT
64 %token <str> STRING UNKNOWN
/freebsd-current/contrib/ntp/libntp/
H A Dauthreadkeys.c43 * Save this and space to end of token
51 * If token length is zero return an error, else set end of
52 * token to zero and return start.
141 char *token; local
171 token = nexttok(&line);
172 if (token == NULL)
178 keyno = atoi(token);
182 token);
189 token, NTP_MAXKEY);
196 token
[all...]
/freebsd-current/libexec/nuageinit/
H A Dyaml.lua146 local token
165 token = table_clone(tokens[i])
166 token[2] = captures
168 token.raw = str:sub(1, #str - #str2)
171 if token[1] == "{" or token[1] == "[" then
173 elseif token.const then
175 str = token[2][2] .. str
176 token.raw = token
[all...]
/freebsd-current/cddl/contrib/opensolaris/lib/libdtrace/common/
H A 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_PREIN
[all...]

Completed in 200 milliseconds

1234567891011>>