Searched refs:tokens (Results 1 - 10 of 10) sorted by relevance

/u-boot/lib/libavb/
H A Davb_cmdline.h30 char* tokens[AVB_MAX_NUM_CMDLINE_SUBST]; member in struct:AvbCmdlineSubstList
H A Davb_cmdline.c97 additional_substitutions->tokens[n],
404 avb_free(cmdline_subst->tokens[i]);
437 out_cmdline_subst->tokens[list_index] =
439 if (out_cmdline_subst->tokens[list_index] == NULL) {
442 avb_uppercase(out_cmdline_subst->tokens[list_index]);
454 if (out_cmdline_subst->tokens[list_index]) {
455 avb_free(out_cmdline_subst->tokens[list_index]);
/u-boot/tools/
H A Dasn1_compiler.c348 struct token *tokens; local
352 /* Assume we're going to have half as many tokens as we have
355 token_list = tokens = calloc((end - buffer) / 2, sizeof(struct token));
356 if (!tokens) {
407 tokens[tix].line = lineno;
410 /* Handle string tokens */
420 tokens[tix].size = q - p;
423 tokens[tix].content = malloc(tokens[tix].size + 1);
424 if (!tokens[ti
[all...]
/u-boot/drivers/i2c/
H A Dmeson_i2c.c60 u32 tokens[2]; /* Sequence of tokens to be written */ member in struct:meson_i2c
61 uint num_tokens; /* Number of tokens to be written */
66 i2c->tokens[0] = 0;
67 i2c->tokens[1] = 0;
74 i2c->tokens[0] |= (token & 0xf) << (i2c->num_tokens * 4);
76 i2c->tokens[1] |= (token & 0xf) << ((i2c->num_tokens % 8) * 4);
125 * part of message and write tokens and data (if needed) to the
151 writel(i2c->tokens[0], &i2c->regs->tok_list0);
152 writel(i2c->tokens[
[all...]
/u-boot/doc/sphinx/
H A Dkernel_include.py167 tokens = NumberLines([([], text)], startline, endline)
168 for classes, value in tokens:
/u-boot/drivers/mtd/ubi/
H A Dbuild.c1451 char *tokens[MTD_PARAM_MAX_COUNT], *token; local
1481 tokens[i] = strsep(&pbuf, ",");
1489 strcpy(&p->name[0], tokens[0]);
1491 token = tokens[1];
1499 token = tokens[2];
1510 token = tokens[3];
/u-boot/fs/squashfs/
H A Dsqfs.c234 static int sqfs_get_tokens_length(char **tokens, int count) argument
240 * between the tokens.
243 length += strlen(tokens[i]) + 1;
293 static int sqfs_tokenize(char **tokens, int count, const char *str) argument
303 tokens[0] = strdup(strc);
304 if (!tokens[0]) {
311 tokens[j] = strdup(aux);
312 if (!tokens[j]) {
314 free(tokens[i]);
328 * Remove last 'updir + 1' tokens fro
[all...]
/u-boot/scripts/
H A Dspdxcheck.py78 tokens = [ 'LPAR', 'RPAR', 'ID', 'EXC' ] + reserved variable in class:id_parser
/u-boot/tools/buildman/
H A Dkconfiglib.py2216 # We might already have tokens from parsing a line and discovering that
2337 # Parses 's', returning a None-terminated list of tokens. Registers any
2344 # It might be possible to rewrite this to 'yield' tokens instead,
2375 tokens = [token]
2379 # Main tokenization loop (for tokens past the first one)
2437 # We always strip whitespace after tokens, so it is safe to
2471 val if token in _STRING_LEX or tokens[0] is _T_OPTION \
2526 self._parse_error("unknown tokens in line")
2535 tokens.append(token)
2538 tokens
[all...]
/u-boot/fs/ubifs/
H A Dsuper.c1123 static const match_table_t tokens = { variable
1180 token = match_token(p, tokens, args);

Completed in 192 milliseconds