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

1 2 3 4 5 6 7 8 91011>>

  /src/crypto/external/bsd/openssl.old/dist/test/recipes/
02-test_ordinals.t 30 my @tokens = split(/(?:\s+|\s*:\s*)/, $line);
32 if ($#tokens < 5 || $#tokens > 6) {
37 if ($tokens[3] eq "NOEXIST") {
42 $newqual = $tokens[4];
44 if ($cnt > $tokens[1]
45 || ($cnt == $tokens[1] && ($qualifier ne $newqual
47 print STDERR "Invalid ordinal detected: ".$tokens[1]."\n";
51 $cnt = $tokens[1];
53 $lastfunc = $tokens[0]
    [all...]
  /src/external/bsd/nsd/dist/simdzone/src/fallback/
bench.c 18 int32_t zone_bench_fallback_lex(parser_t *parser, size_t *tokens)
22 (*tokens) = 0;
25 (*tokens)++;
  /src/external/bsd/nsd/dist/simdzone/src/haswell/
bench.c 20 int32_t zone_bench_haswell_lex(zone_parser_t *parser, size_t *tokens)
24 (*tokens) = 0;
27 (*tokens)++;
  /src/external/bsd/nsd/dist/simdzone/src/westmere/
bench.c 20 int32_t zone_bench_westmere_lex(zone_parser_t *parser, size_t *tokens)
24 (*tokens) = 0;
27 (*tokens)++;
  /src/crypto/external/apache2/openssl/dist/test/recipes/
02-test_ordinals.t 30 my @tokens = split(/(?:\s+|\s*:\s*)/, $line);
32 if ($#tokens < 5 || $#tokens > 6) {
37 if ($tokens[3] eq "NOEXIST") {
42 $newqual = $tokens[4];
44 my $number = $tokens[1];
50 print STDERR "Invalid ordinal detected: ".$tokens[1]."\n";
54 $cnt = $tokens[1];
56 $lastfunc = $tokens[0];
  /src/crypto/external/bsd/openssl/dist/test/recipes/
02-test_ordinals.t 30 my @tokens = split(/(?:\s+|\s*:\s*)/, $line);
32 if ($#tokens < 5 || $#tokens > 6) {
37 if ($tokens[3] eq "NOEXIST") {
42 $newqual = $tokens[4];
44 my $number = $tokens[1];
50 print STDERR "Invalid ordinal detected: ".$tokens[1]."\n";
54 $cnt = $tokens[1];
56 $lastfunc = $tokens[0];
  /src/external/apache2/llvm/dist/clang/bindings/python/tests/cindex/
test_tokens.py 22 tokens = list(tu.get_tokens(extent=r))
24 self.assertEqual(len(tokens), 4)
25 self.assertEqual(tokens[1].spelling, 'i')
26 self.assertEqual(tokens[1].kind, TokenKind.IDENTIFIER)
28 cursor = tokens[1].cursor
30 self.assertEqual(tokens[1].cursor, tokens[2].cursor)
38 tokens = list(tu.get_tokens(extent=r))
39 self.assertEqual(len(tokens), 4)
41 loc = tokens[1].locatio
    [all...]
  /src/external/bsd/ntp/dist/libjsmn/
jsmn.c 11 jsmntok_t *tokens, size_t num_tokens) {
16 tok = &tokens[parser->toknext++];
40 size_t len, jsmntok_t *tokens, size_t num_tokens) {
68 if (tokens == NULL) {
72 token = jsmn_alloc_token(parser, tokens, num_tokens);
89 size_t len, jsmntok_t *tokens, size_t num_tokens) {
102 if (tokens == NULL) {
105 token = jsmn_alloc_token(parser, tokens, num_tokens);
153 * Parse JSON string and fill tokens.
156 jsmntok_t *tokens, unsigned int num_tokens)
    [all...]
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...]
jsmn.h 27 /* Not enough tokens were provided */
62 * Create JSON parser over an array of tokens
67 * Run JSON parser. It parses a JSON data string into and array of tokens, each describing
71 jsmntok_t *tokens, unsigned int num_tokens);
  /src/external/bsd/nsd/dist/contrib/bind2nsd/bind2nsd/
Parser.py 62 def handle_include(self, tokens):
63 (ttype, val, curline) = tokens.get()
74 (ttype, val, curline) = tokens.get()
79 def handle_key(self, tokens):
80 (ttype, val, curline) = tokens.get()
84 (ttype, val, curline) = tokens.get()
87 (ttype, val, curline) = tokens.get()
90 (ttype, val, curline) = tokens.get()
96 (ttype, val, curline) = tokens.get()
104 (ttype, val, curline) = tokens.get(
    [all...]
  /src/external/bsd/mdocml/dist/
test-getsubopt.c 33 char *const tokens[] = { token0, NULL }; local
35 return ! (getsubopt(&options, tokens, &value) == 0
compat_getsubopt.c 39 getsubopt(char **optionp, char * const *tokens, char **valuep)
83 for (cnt = 0; *tokens; ++tokens, ++cnt)
84 if (!strcmp(suboptarg, *tokens))
  /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/lib/libc/stdlib/
getsubopt.c 65 getsubopt(char **optionp, char * const *tokens, char **valuep)
70 _DIAGASSERT(tokens != NULL);
112 for (cnt = 0; *tokens; ++tokens, ++cnt)
113 if (!strcmp(suboptarg, *tokens))
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
iasm.d 38 if (!s.tokens)
46 auto ias = new InlineAsmStatement(s.loc, s.tokens);
51 auto eas = new GccAsmStatement(s.loc, s.tokens);
  /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/apache2/llvm/dist/llvm/tools/llvm-c-test/
disassemble.c 65 static void handle_line(char **tokens, int ntokens) {
68 const char *triple = tokens[0];
69 const char *features = tokens[1];
77 disbuf[disbuflen++] = strtol(tokens[i], NULL, 16);
llvm-c-test.h 24 void llvm_tokenize_stdin(void (*cb)(char **tokens, int ntokens));
calc.c 41 static LLVMValueRef build_from_tokens(char **tokens, int ntokens,
49 char tok = tokens[i][0];
85 long val = strtol(tokens[i], &end, 0);
112 static void handle_line(char **tokens, int ntokens) {
113 char *name = tokens[0];
130 res = build_from_tokens(tokens + 1, ntokens - 1, builder, param);
helpers.c 20 void llvm_tokenize_stdin(void (*cb)(char **tokens, int ntokens)) {
  /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/external/mpl/bind/dist/bin/tests/system/
ditch.pl 64 my @tokens = split (' ', $line);
76 my $q = new Net::DNS::Question($tokens[0], $tokens[1], "IN");
  /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. */

Completed in 58 milliseconds

1 2 3 4 5 6 7 8 91011>>