| /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/tools/ |
| strip_asm.py | 52 def is_identifier(tk): 53 if len(tk) == 0: 55 first = tk[0] 58 for i in range(1, len(tk)): 59 c = tk[i] 73 for tk in parts: 74 if is_identifier(tk): 75 if tk.startswith('__Z'): 76 tk = tk[1: [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/benchmark/tools/ |
| strip_asm.py | 52 def is_identifier(tk): 53 if len(tk) == 0: 55 first = tk[0] 58 for i in range(1, len(tk)): 59 c = tk[i] 73 for tk in parts: 74 if is_identifier(tk): 75 if tk.startswith('__Z'): 76 tk = tk[1: [all...] |
| /src/external/bsd/wpa/dist/src/crypto/ |
| md5.c | 30 u8 tk[16]; local 45 if (md5_vector(1, &key, &key_len, tk)) 47 key = tk; 91 os_memset(tk, 0, sizeof(tk));
|
| sha1.c | 30 unsigned char tk[20]; local 45 if (sha1_vector(1, &key, &key_len, tk)) 47 key = tk; 90 forced_memzero(tk, sizeof(tk));
|
| sha256.c | 30 unsigned char tk[32]; local 45 if (sha256_vector(1, &key, &key_len, tk) < 0) 47 key = tk; 94 forced_memzero(tk, sizeof(tk));
|
| sha384.c | 30 unsigned char tk[48]; local 44 if (sha384_vector(1, &key, &key_len, tk) < 0) 46 key = tk;
|
| sha512.c | 30 unsigned char tk[64]; local 44 if (sha512_vector(1, &key, &key_len, tk) < 0) 46 key = tk;
|
| crypto_internal.c | 44 u8 tk[32]; local 79 MD5Final(tk, &ctx->u.md5); 80 key = tk; 98 SHA1Final(tk, &ctx->u.sha1); 99 key = tk; 118 sha256_done(&ctx->u.sha256, tk); 119 key = tk;
|
| /src/sys/netinet/ |
| sctp_hashdriver.c | 81 unsigned char tk[20]; local 89 MD5Final(tk, &tctx); 90 key = tk; 96 SHA1Final(tk, &tctx); 97 key = tk; 168 unsigned char tk[20]; local 176 MD5Final(tk, &tctx); 177 key = tk; 183 SHA1Final(tk, &tctx); 184 key = tk; [all...] |
| /src/external/bsd/tmux/dist/ |
| tty-keys.c | 436 struct tty_key *tk; local 441 if ((tk = tty_keys_find(tty, s, strlen(s), &size)) == NULL) { 446 tk->key = key; 454 struct tty_key *tk; local 457 tk = *tkp; 458 if (tk == NULL) { 459 tk = *tkp = xcalloc(1, sizeof *tk); 460 tk->ch = *s; 461 tk->key = KEYC_UNKNOWN 614 struct tty_key *tk, *tk1; local [all...] |
| /src/external/mpl/dhcp/dist/omapip/ |
| auth.c | 80 omapi_auth_key_t *tk; local 87 tk = (omapi_auth_key_t *)0; 89 omapi_auth_key_hash_lookup (&tk, auth_key_hash, 91 if (tk == a) { 92 omapi_auth_key_dereference (&tk, MDL); 95 if (tk) { 97 tk -> name, 0, MDL); 98 omapi_auth_key_dereference (&tk, MDL);
|
| /src/crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/ |
| rijndael-alg-fst.c | 45 #define tk xtk.x8 macro 49 *((word32*)tk[j]) = *((word32*)k[j]); 56 *((word32*)W[r][t]) = *((word32*)tk[j]); 66 tk[0][0] ^= S[tk[KC-1][1]]; 67 tk[0][1] ^= S[tk[KC-1][2]]; 68 tk[0][2] ^= S[tk[KC-1][3]]; 69 tk[0][3] ^= S[tk[KC-1][0]] 100 #undef tk macro [all...] |
| /src/external/bsd/tcpdump/dist/ |
| signature.c | 60 unsigned char tk[16]; local 70 MD5_Final(tk, &tctx); 72 key = tk;
|
| /src/external/gpl3/gcc/dist/gcc/ |
| gengtype-state.cc | 348 struct state_token_st *tk = NULL; local 387 tk = XCNEW (struct state_token_st); 388 tk->stok_kind = STOK_INTEGER; 389 tk->stok_line = state_line; 390 tk->stok_col = curoff - state_bol; 391 tk->stok_file = state_path; 392 tk->stok_next = NULL; 393 tk->stok_un.stok_num = n; 395 return tk; 401 tk = XCNEW (struct state_token_st) [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| gengtype-state.cc | 348 struct state_token_st *tk = NULL; local 387 tk = XCNEW (struct state_token_st); 388 tk->stok_kind = STOK_INTEGER; 389 tk->stok_line = state_line; 390 tk->stok_col = curoff - state_bol; 391 tk->stok_file = state_path; 392 tk->stok_next = NULL; 393 tk->stok_un.stok_num = n; 395 return tk; 401 tk = XCNEW (struct state_token_st) [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/d/ |
| typeinfo.cc | 160 make_internal_typeinfo (tinfo_kind tk, Identifier *ident, ...) 186 tinfo_types[tk] = type; 1548 tinfo_kind tk = get_typeinfo_kind (t); local 1549 switch (tk) 1560 if (tk == TK_SHARED_TYPE) 1566 else if (tk == TK_CONST_TYPE) 1571 else if (tk == TK_IMMUTABLE_TYPE) 1576 else if (tk == TK_INOUT_TYPE) 1581 else if (tk == TK_POINTER_TYPE) 1586 else if (tk == TK_ARRAY_TYPE [all...] |
| /src/lib/libcrypt/ |
| hmac.c | 77 unsigned char tk[HASH_LENGTH]; local 89 HASH_Final(tk, &tctx); 91 key = tk;
|
| /src/regress/sys/fs/lfs/ckckp/ |
| check-all | 282 for ($tk = $oind; $tk < $k; $tk++) { 283 print "Test roll-forward agent at non-checkpoint pseg $tk\n"; 284 print LOG "Test roll-forward agent at non-checkpoint pseg $tk\n"; 285 ©pseg($oind, $tk);
|
| /src/external/gpl2/xcvs/dist/lib/ |
| mktime.c | 558 check_result (time_t tk, struct tm tmk, time_t tl, const struct tm *lt) 560 if (tk != tl || !lt || not_equal_tm (&tmk, lt)) 566 printf (") == %ld, should be %ld\n", (long int) tk, (long int) tl); 579 time_t tk, tl, tl1; 619 tk = mktime (&tmk); 620 status |= check_result (tk, tmk, tl, &tml); 639 tk = tl; 640 status |= check_result (tk, tmk, tl, &tml); 578 time_t tk, tl, tl1; local
|
| /src/external/gpl2/gettext/dist/gettext-tools/examples/ |
| Makefile.am | 1017 hello-tcl-tk/INSTALL \ 1018 hello-tcl-tk/autogen.sh \ 1019 hello-tcl-tk/autoclean.sh \ 1020 hello-tcl-tk/hello.tcl \ 1021 hello-tcl-tk/Makefile.am \ 1022 hello-tcl-tk/configure.ac \ 1023 hello-tcl-tk/m4/Makefile.am \ 1024 hello-tcl-tk/po/Makefile.am \ 1025 hello-tcl-tk/po/LINGUAS \ 1026 hello-tcl-tk/po/af.po [all...] |
| /src/external/bsd/wpa/dist/src/common/ |
| common_module_tests.c | 637 const u8 tk[] = { local 665 if (ptk.tk_len != sizeof(tk) || 666 os_memcmp(tk, ptk.tk, sizeof(tk)) != 0) { 667 wpa_printf(MSG_ERROR, "PASN: Mismatched TK"); 716 const u8 tk[] = { local 750 if (ptk.tk_len != sizeof(tk) || 751 os_memcmp(tk, ptk.tk, sizeof(tk)) != 0) [all...] |
| /src/lib/libresolv/ |
| hmac_link.c | 218 u_char tk[MD5_LEN]; local 233 MD5Final(tk, &ctx); 235 key = tk;
|
| /src/external/bsd/libbind/dist/dst/ |
| hmac_link.c | 228 u_char tk[MD5_LEN]; local 243 MD5Final(tk, &ctx); 245 key = tk;
|
| /src/games/adventure/ |
| hdr.h | 149 extern int tk[21], stick, dtotal, attack;
|
| /src/external/gpl2/gettext/dist/gettext-tools/examples/po/ |
| Makefile.am | 55 hello-tcl-tk/hello.tcl \ 87 hello-tcl-tk.pot \ 281 hello-tcl-tk.pot : $(POTFILES_DEPS) 282 $(SHELL) '$(srcdir)/xsmallpot.sh' '$(srcdir)' hello-tcl-tk 394 ../hello-tcl-tk/po/$$lang.po \ 473 ../hello-tcl-tk/po/$(LL).po: hello-tcl-tk.pot $(LL).po 474 $(SHELL) mmsmallpo.sh hello-tcl-tk $(LL)
|