| /src/external/bsd/mdocml/dist/ |
| test-getsubopt.c | 33 char *const tokens[] = { token0, NULL }; local 35 return ! (getsubopt(&options, tokens, &value) == 0
|
| /src/lib/libc/locale/ |
| newlocale.c | 48 const char *tokens[_LC_LAST - 1]; local 64 tokens[0] = (const char *)&head[0]; 65 tail = __UNCONST(strchr(tokens[0], '/')); 71 (*l)(tokens[0], dst); 84 tokens[i] = (const char *)tail; 85 tail = __UNCONST(strchr(tokens[i], '/')); 92 tokens[howmany] = tail; 93 tail = __UNCONST(strchr(tokens[howmany], '/')); 101 (*l)(tokens[i], dst);
|
| generic_lc_all.c | 59 const char *tokens[_LC_LAST], *s, *t; local 67 tokens[1] = &head[0]; 68 tail = __UNCONST(strchr(tokens[1], '/')); 71 tokens[i] = tokens[1]; 75 tokens[i] = (const char *)tail; 76 tail = __UNCONST(strchr(tokens[i], '/')); 81 tokens[_LC_LAST - 1] = (const char *)tail; 82 tail = __UNCONST(strchr(tokens[i], '/')); 86 if ((*sl)(tokens[1], locale) != NULL [all...] |
| /src/external/gpl3/gcc.old/dist/libcpp/include/ |
| cpp-id-data.h | 45 /* Replacement tokens (ISO) or replacement text (traditional). See 50 cpp_token * GTY ((tag ("0"), length ("%0.count"))) tokens; member in union:cpp_macro_u 57 /* Number of tokens in expansion, or bytes for traditional macros. */ 78 /* Indicate whether the tokens include extra CPP_PASTE tokens at the 80 tokens. */
|
| /src/crypto/external/bsd/heimdal/dist/cf/ |
| symbol-version.py | 36 tokens = [ 'SYMBOL' ] variable
|
| /src/external/mit/libuv/dist/test/ |
| test-strtok.c | 34 const char* tokens[] = { variable 68 size_t tokens_len = ARRAY_SIZE(tokens); 80 ASSERT_STRCMP(tok_r, tokens[j]); 85 ASSERT_STRCMP(tok_r, tokens[j]);
|
| /src/usr.bin/mklocale/ |
| mklocaledb.c | 115 const token_t tokens[]; member in struct:__anon8301 258 token = &category->tokens[0];
|
| /src/external/bsd/dhcpcd/dist/src/ |
| auth.h | 74 struct token_head tokens; member in struct:auth
|
| /src/external/bsd/nsd/dist/simdzone/src/ |
| bench.c | 77 size_t tokens = 0; local 80 if ((result = kernel->bench_lex(parser, &tokens)) < 0) 83 printf("Lexed %zu tokens\n", tokens);
|
| /src/external/gpl3/gcc/dist/gcc/c/ |
| c-parser.h | 52 of preprocessing tokens to tokens. */ 88 vec<c_token, va_gc> *tokens; member in struct:c_tree_token_vec_struct 92 (((struct c_tree_token_vec_struct *) TREE_CHECK (NODE, C_TOKEN_VEC))->tokens)
|
| /src/external/gpl3/gcc/dist/gcc/ |
| dbgcnt.cc | 212 auto_vec<char *> tokens; local 214 tokens.safe_push (next); 217 for (i = 0; i < tokens.length (); i++) 220 char *name = strtok (tokens[i], ":");
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| dbgcnt.cc | 212 auto_vec<char *> tokens; local 214 tokens.safe_push (next); 217 for (i = 0; i < tokens.length (); i++) 220 char *name = strtok (tokens[i], ":");
|
| /src/external/mit/isl/dist/ |
| isl_stream_private.h | 59 struct isl_token *tokens[5]; member in struct:isl_stream
|
| /src/bin/ksh/ |
| c_test.c | 587 static const char *const tokens[] = { local 600 ret = strcmp(*te->pos.wp, tokens[(int) meta]) == 0;
|
| /src/sbin/umbctl/ |
| umbctl.c | 192 char * tokens[3] = { buf, NULL, NULL }; local 217 tokens[1] = p + 1; 220 tokens[1] = NULL; 221 ret |= _umbctl_set(ifname, &umbp, (p != NULL) ? 2 : 1, tokens)
|
| /src/crypto/external/bsd/heimdal/dist/lib/krb5/ |
| expand_path.c | 88 * This is also used to expand a few other tokens on Windows, since 351 } tokens[] = { variable in typeref:struct:__anon878 403 for (i = 0; i < sizeof(tokens)/sizeof(tokens[0]); i++) { 404 if (!strncmp(token+2, tokens[i].tok, (token_end - token) - 2)) 405 return tokens[i].exp_func(context, tokens[i].param, 406 tokens[i].postfix, ret); 415 * Internal function to expand tokens in paths. 420 * @path_in The path to expand tokens fro [all...] |
| /src/external/bsd/ntp/dist/libjsmn/ |
| jsmn_test.c | 88 jsmntok_t tokens[10]; local 93 r = jsmn_parse(&p, js, strlen(js), tokens, 10); 95 check(TOKEN_EQ(tokens[0], 0, 8, JSMN_OBJECT)); 96 check(TOKEN_EQ(tokens[1], 2, 3, JSMN_STRING)); 97 check(TOKEN_EQ(tokens[2], 6, 7, JSMN_PRIMITIVE)); 99 check(TOKEN_STRING(js, tokens[0], js)); 100 check(TOKEN_STRING(js, tokens[1], "a")); 101 check(TOKEN_STRING(js, tokens[2], "0")); 105 r = jsmn_parse(&p, js, strlen(js), tokens, 10); 110 r = jsmn_parse(&p, js, strlen(js), tokens, 10) 337 jsmntok_t tokens[10]; local 366 jsmntok_t tokens[128]; local 398 jsmntok_t tokens[10]; local 444 jsmntok_t tokens[10]; local 509 jsmntok_t tokens[10]; local 574 jsmntok_t tokens[10]; local [all...] |
| /src/external/bsd/wpa/dist/src/utils/ |
| json.c | 209 static struct json_token * json_alloc_token(unsigned int *tokens) 211 (*tokens)++; 212 if (*tokens > JSON_MAX_TOKENS) { 227 unsigned int tokens = 0; local 237 token = json_alloc_token(&tokens); 262 token->child = json_alloc_token(&tokens); 302 token = json_alloc_token(&tokens); 353 curr_token->sibling = json_alloc_token(&tokens); 374 token = json_alloc_token(&tokens); 426 token = json_alloc_token(&tokens); [all...] |
| /src/external/gpl2/texinfo/dist/makeinfo/ |
| defun.c | 39 char **tokens; member in struct:token_accumulator 47 accumulator->tokens = NULL; 56 accumulator->tokens = xrealloc (accumulator->tokens, 59 accumulator->tokens[accumulator->index] = token; 102 /* Return a list of tokens from the contents of STRING. 103 Commands and brace-delimited groups count as single tokens. 126 /* Commands count as single tokens. */ 176 /* Make commas separate tokens so to differentiate them from 229 return accumulator.tokens; [all...] |
| /src/external/gpl3/gdb/dist/gdb/ |
| parser-defs.h | 352 struct typed_stoken *tokens; member in struct:stoken_vector
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| parser-defs.h | 352 struct typed_stoken *tokens; member in struct:stoken_vector
|
| /src/external/bsd/tradcpp/dist/ |
| eval.c | 63 enum tokens { enum 94 enum tokens tok; 109 enum tokens tok; 132 enum tokens tok; 138 static struct tokenarray tokens; variable in typeref:struct:tokenarray 142 token_create(const struct place *p, enum tokens tok, int val) 170 fprintf(stderr, "tokens:"); 171 num = tokenarray_num(&tokens); 173 t = tokenarray_get(&tokens, i); 209 isuop(enum tokens tok [all...] |
| /src/external/gpl3/gcc/dist/gcc/config/aarch64/ |
| driver-aarch64.cc | 385 std::set<std::string> tokens; local 386 split_words (val, tokens); 391 for (it = tokens.begin (); enabled && it != tokens.end (); ++it)
|
| /src/external/gpl3/gcc.old/dist/gcc/config/aarch64/ |
| driver-aarch64.cc | 366 std::set<std::string> tokens; local 367 split_words (val, tokens); 372 for (it = tokens.begin (); enabled && it != tokens.end (); ++it)
|
| /src/external/mpl/dhcp/dist/tests/ |
| t_api.c | 790 char *tokens[T_MAXTOKS + 1]; local 811 cnt = t_bustline(p, tokens); 813 result = func(tokens);
|