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

1 2 3 4 5 6 7 8 91011>>

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_symbolizer_test.cc 21 char *token; local in function:__sanitizer::TEST
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 in function:__sanitizer::TEST
37 const char *rest = ExtractInt("123,456;789", ";,", &token);
38 EXPECT_EQ(123, token);
43 uptr token; local in function:__sanitizer::TEST
50 char *token; local in function:__sanitizer::TEST
    [all...]
sanitizer_symbolizer_test.cc 21 char *token; local in function:__sanitizer::TEST
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 in function:__sanitizer::TEST
37 const char *rest = ExtractInt("123,456;789", ";,", &token);
38 EXPECT_EQ(123, token);
43 uptr token; local in function:__sanitizer::TEST
50 char *token; local in function:__sanitizer::TEST
    [all...]
sanitizer_symbolizer_test.cc 21 char *token; local in function:__sanitizer::TEST
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 in function:__sanitizer::TEST
37 const char *rest = ExtractInt("123,456;789", ";,", &token);
38 EXPECT_EQ(123, token);
43 uptr token; local in function:__sanitizer::TEST
50 char *token; local in function:__sanitizer::TEST
    [all...]
sanitizer_symbolizer_test.cc 21 char *token; local in function:__sanitizer::TEST
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 in function:__sanitizer::TEST
37 const char *rest = ExtractInt("123,456;789", ";,", &token);
38 EXPECT_EQ(123, token);
43 uptr token; local in function:__sanitizer::TEST
50 char *token; local in function:__sanitizer::TEST
    [all...]
sanitizer_symbolizer_test.cc 21 char *token; local in function:__sanitizer::TEST
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 in function:__sanitizer::TEST
37 const char *rest = ExtractInt("123,456;789", ";,", &token);
38 EXPECT_EQ(123, token);
43 uptr token; local in function:__sanitizer::TEST
50 char *token; local in function:__sanitizer::TEST
    [all...]
  /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 in function:arith_token
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...]
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 in function:arith_token
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...]
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 in function:arith_token
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...]
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 in function:arith_token
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...]
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 in function:arith_token
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/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...]
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...]
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...]
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...]
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
clc36f.h 16 __u32 token; member in struct:volta_channel_gpfifo_a_v0
clc36f.h 16 __u32 token; member in struct:volta_channel_gpfifo_a_v0
clc36f.h 16 __u32 token; member in struct:volta_channel_gpfifo_a_v0
clc36f.h 16 __u32 token; member in struct:volta_channel_gpfifo_a_v0
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/
oclass.h 27 u64 token; member in struct:nvkm_oclass
oclass.h 27 u64 token; member in struct:nvkm_oclass
oclass.h 27 u64 token; member in struct:nvkm_oclass
oclass.h 27 u64 token; member in struct:nvkm_oclass
oclass.h 27 u64 token; member in struct:nvkm_oclass

Completed in 238 milliseconds

1 2 3 4 5 6 7 8 91011>>