HomeSort by: relevance | last modified time | path
    Searched defs:tokens (Results 1 - 25 of 114) sorted by relevancy

1 2 3 4 5

  /src/external/bsd/mdocml/dist/
test-getsubopt.c 33 char *const tokens[] = { token0, NULL }; local
35 return ! (getsubopt(&options, tokens, &value) == 0
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);
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...]
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. */
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
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]);
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];
mklocaledb.c 115 const token_t tokens[]; member in struct:__anon8301
258 token = &category->tokens[0];
  /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);
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)
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], ":");
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], ":");
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
isl_stream_private.h 59 struct isl_token *tokens[5]; member in struct:isl_stream
  /src/external/bsd/dhcpcd/dist/src/
auth.h 72 struct token_head tokens; member in struct:auth

Completed in 71 milliseconds

1 2 3 4 5