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

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/am-utils/dist/fsinfo/
null_gram.y 10 token: label
  /src/external/bsd/nsd/dist/simdzone/src/fallback/
bench.c 20 token_t token; local
23 take(parser, &token);
24 while (token.code > 0) {
26 take(parser, &token);
29 return token.code ? -1 : 0;
  /src/external/bsd/nsd/dist/simdzone/src/haswell/
bench.c 22 token_t token; local
25 take(parser, &token);
26 while (token.code > 0) {
28 take(parser, &token);
31 return token.code ? -1 : 0;
  /src/external/bsd/nsd/dist/simdzone/src/westmere/
bench.c 22 token_t token; local
25 take(parser, &token);
26 while (token.code > 0) {
28 take(parser, &token);
31 return token.code ? -1 : 0;
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_symbolizer_test.cc 21 char *token; local
24 rest = ExtractToken("a;b;c", ";", &token);
25 EXPECT_STREQ("a", token);
27 InternalFree(token);
29 rest = ExtractToken("aaa-bbb.ccc", ";.-*", &token);
30 EXPECT_STREQ("aaa", token);
32 InternalFree(token);
36 int token; local
37 const char *rest = ExtractInt("123,456;789", ";,", &token);
38 EXPECT_EQ(123, token);
43 uptr token; local
50 char *token; local
    [all...]
  /src/external/gpl3/gdb/dist/gnulib/import/
strtok_r.c 46 char *token; local
59 /* Find the end of the token. */
60 token = s;
61 s = strpbrk (token, delim);
63 /* This token finishes the string. */
64 *save_ptr = __rawmemchr (token, '\0');
67 /* Terminate the token and make *SAVE_PTR point past it. */
71 return token;
  /src/external/gpl3/gdb.old/dist/gnulib/import/
strtok_r.c 46 char *token; local
59 /* Find the end of the token. */
60 token = s;
61 s = strpbrk (token, delim);
63 /* This token finishes the string. */
64 *save_ptr = __rawmemchr (token, '\0');
67 /* Terminate the token and make *SAVE_PTR point past it. */
71 return token;
  /src/bin/sh/
arith_token.c 65 * Scan next arithmetic token, return its type,
69 * refer to the next char after the token returned, except
75 int token; local
81 token = *buf;
83 if (isdigit(token)) {
91 token = *end;
96 "%.*s", token, (int)(end - buf), buf);
99 VTRACE(DBG_ARITH, ("Arith token ARITH_NUM=%jd\n",
103 } else if (is_name(token)) {
117 VTRACE(DBG_ARITH, ("Arith token ARITH_VAR=\"%s\"\n"
    [all...]
  /src/crypto/external/apache2/openssl/dist/include/internal/
quic_ssl.h 36 uint8_t *token; member in struct:quic_token_st
45 const uint8_t *token, size_t token_len);
47 QUIC_TOKEN **token);
48 void ossl_quic_free_peer_token(QUIC_TOKEN *token);
  /src/external/gpl3/gcc/dist/contrib/
filter-clang-warnings.py 76 token = ': warning: ' variable
77 i = line.find(token)
80 message = line[i + len(token):]
  /src/external/gpl3/gcc.old/dist/contrib/
filter-clang-warnings.py 75 token = ': warning: ' variable
76 i = line.find(token)
79 message = line[i + len(token):]
  /src/external/mpl/bind/dist/fuzz/
isc_lex_getmastertoken.c 50 isc_token_t token; local
73 result = isc_lex_getmastertoken(lex, &token, expect, eol);
74 } while (result == ISC_R_SUCCESS && token.type != isc_tokentype_eof);
isc_lex_gettoken.c 51 isc_token_t token; local
52 result = isc_lex_gettoken(lex, 0, &token);
dns_rdata_fromtext.c 54 isc_token_t token; local
84 result = isc_lex_gettoken(lex, options | ISC_LEXOPT_NUMBER, &token);
88 if (token.type == isc_tokentype_eof) {
91 if (token.type == isc_tokentype_eol) {
97 if (token.type == isc_tokentype_number) {
98 if (token.value.as_ulong > 0xffff) {
101 rdclass = (dns_rdataclass_t)token.value.as_ulong;
102 } else if (token.type == isc_tokentype_string) {
104 &token.value.as_textregion);
111 result = isc_lex_gettoken(lex, options | ISC_LEXOPT_NUMBER, &token);
    [all...]
  /src/sbin/cgdconfig/
cgdparse.y 53 } token;
64 %type <token> token deptoken
66 %token <integer> INTEGER
67 %token <string> STRINGLIT
69 %token <token> ALGORITHM KEYLENGTH IVMETHOD VERIFY_METHOD
70 %token <token> KEYGEN SALT ITERATIONS MEMORY PARALLELISM VERSION KEY CMD SHARED
71 %token <token> SUBKE
116 token: ALGORITHM | KEYLENGTH label
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvif/
clc36f.h 16 __u32 token; member in struct:volta_channel_gpfifo_a_v0
  /src/crypto/external/apache2/openssl/dist/test/
quic_srt_gen_test.c 48 QUIC_STATELESS_RESET_TOKEN token; local
56 memset(&token, 0xff, sizeof(token));
59 &token)))
62 if (!TEST_mem_eq(token.token, sizeof(token.token),
  /src/external/bsd/ntp/dist/libjsmn/
jsmn.c 8 * Allocates a fresh unused token from the token pull.
26 * Fills token type and boundaries.
28 static void jsmn_fill_token(jsmntok_t *token, jsmntype_t type,
30 token->type = type;
31 token->start = start;
32 token->end = end;
33 token->size = 0;
37 * Fills next available token with JSON primitive.
41 jsmntok_t *token; local
90 jsmntok_t *token; local
159 jsmntok_t *token; local
    [all...]
  /src/external/bsd/wpa/dist/src/ap/
comeback_token.c 2 * hostapd / Comeback token mechanism for SAE
35 const u8 *token, size_t token_len)
47 if (token_idx == 0 || token_idx != WPA_GET_BE16(token)) {
49 "Comeback: Invalid anti-clogging token from "
51 MAC2STR(addr), WPA_GET_BE16(token), token_idx);
57 addrs[1] = token;
61 os_memcmp_const(token + 2, &mac[2], SHA256_MAC_LEN - 2) != 0)
64 comeback_pending_idx[idx] = 0; /* invalidate used token */
77 u8 *token; local
91 wpa_hexdump(MSG_DEBUG, "Comeback: Updated token key"
    [all...]
  /src/external/mpl/bind/dist/bin/named/
control.c 42 isc_token_t token; local
46 result = isc_lex_gettoken(lex, ISC_LEXOPT_EOF, &token);
51 isc_lex_ungettoken(lex, &token);
53 if (token.type != isc_tokentype_string) {
57 *cmdp = token.value.as_textregion.base;
  /src/external/mpl/dhcp/dist/keama/
json.c 41 enum dhcp_token token; local
48 token = next_token(&val, NULL, cfile);
49 switch (token) {
90 enum dhcp_token token; local
97 token = peek_token(&val, NULL, cfile);
98 switch (token) {
131 enum dhcp_token token; local
138 token = peek_token(&val, NULL, cfile);
139 switch (token) {
149 token = next_token(&val, NULL, cfile)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/
oclass.h 27 u64 token; member in struct:nvkm_oclass
  /src/external/mpl/bind/dist/lib/dns/rdata/generic/
proforma.c 22 isc_token_t token; local
27 RETERR(isc_lex_getmastertoken(lexer, &token, isc_tokentype_string,
  /src/external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/
proforma.c 22 isc_token_t token; local
27 RETERR(isc_lex_getmastertoken(lexer, &token, isc_tokentype_string,
  /src/external/mpl/dhcp/dist/common/
resolv.c 46 int token; local
62 token = next_token (&val, (unsigned *)0, cfile);
63 if (token == END_OF_FILE)
65 else if (token == EOL)
67 else if (token == DOMAIN || token == SEARCH) {
93 token = peek_token (&val,
95 } while (token != EOL);
96 if (token != EOL) {
102 } else if (token == NAMESERVER)
    [all...]

Completed in 36 milliseconds

1 2 3 4 5 6 7 8 91011>>