| /mirbsd/src/bin/md5/ |
| D | cksum.c | 447 struct hash_functions *hf = NULL, *hashes[NHASHES + 1]; in main() local 454 memset(hashes, 0, sizeof(hashes)); in main() 468 for (i = 0; i < NHASHES && hashes[i] != hf; i++) in main() 469 if (hashes[i] == NULL) { in main() 470 hashes[i] = hf; in main() 493 for (i = 0; i < NHASHES && hashes[i] != hf; i++) { in main() 494 if (hashes[i] == NULL) { in main() 495 hashes[i] = hf; in main() 525 if (cflag != 0 && hashes[1] != NULL) in main() 529 if (hashes[0] == NULL) { in main() [all …]
|
| /mirbsd/src/sbin/isakmpd/ |
| D | hash.c | 55 static struct hash hashes[] = { variable 76 hash_get(enum hashes hashtype) in hash_get() 83 for (i = 0; i < sizeof hashes / sizeof hashes[0]; i++) in hash_get() 84 if (hashtype == hashes[i].type) in hash_get() 85 return &hashes[i]; in hash_get()
|
| D | hash.h | 41 enum hashes { enum 47 enum hashes type; 67 extern struct hash *hash_get(enum hashes);
|
| /mirbsd/src/usr.bin/oldroff/inv/ |
| D | inv1.c | 74 int chatty = 0, docs, hashes, fp[2], fr, fw, pfork, pwait, status; in main() local 197 whash(fta, fa, fb, nhash, iflong, &keys, &hashes); in main() 210 keys, hashes, docs); in main()
|
| /mirbsd/src/gnu/usr.bin/perl/lib/Class/ |
| D | Struct.pm | 113 my %hashes = (); 160 $hashes{$name}++; 212 elsif( defined $hashes{$name} ){
|
| /mirbsd/src/gnu/usr.bin/perl/t/lib/warnings/ |
| D | av | 22 Pseudo-hashes are deprecated at - line 4. 23 Pseudo-hashes are deprecated at - line 9.
|
| /mirbsd/src/gnu/usr.bin/perl/pod/ |
| D | perldsc.pod | 58 =item * hashes of arrays 60 =item * arrays of hashes 62 =item * hashes of hashes 79 hashes, but instead contain I<references> to other arrays or hashes. 100 $array[7]{string} # array of hashes 102 $hash{string}{'another string'} # hash of hashes 310 X<array of hashes, debugging> X<hash of hashes, debugging> 480 X<array of hashes> X<AoH> 571 X<hass of hashes> X<HoH> 831 hashes) to a dbm file. The first problem is that all but GDBM and
|
| D | perlintro.pod | 113 Perl has three main variable types: scalars, arrays, and hashes. 216 Just like special scalars and arrays, there are also special hashes. 223 Scalars, arrays and hashes are documented more fully in L<perldata>. 226 you to build lists and hashes within lists and hashes. 230 element, you can easily create lists and hashes within lists and 231 hashes. The following example shows a 2 level hash of hash
|
| D | perl581delta.pod | 34 Mainly due to security reasons, the "random ordering" of hashes 51 the order in which hashes are dumped will vary. In general the cure 54 important, use tied hashes: for example the Tie::IxHash module 222 =head3 (Reminder) Pseudo-hashes are deprecated (really) 224 Pseudo-hashes were deprecated in Perl 5.8.0 and will be removed in 226 pseudo-hashes will trigger the warning C<Pseudo-hashes are deprecated>. 227 If you really want to continue using pseudo-hashes but not to see the 783 =head2 New "Pseudo-hashes are deprecated" 879 do not work with the randomised hashes. (mod_perl 1.x works fine.) 891 =head2 Tied hashes in scalar context [all …]
|
| D | perl573delta.pod | 156 Data::Dumper: option to sort hashes 172 read-only hashes (user-level interface is Hash::Util)
|
| D | perlreftut.pod | 9 nested hashes. To enable these, Perl 5 introduced a feature called 22 hash whose values were lists. Perl 4 had hashes, of course, but the 72 References in Perl are like names for arrays and hashes. They're 241 totally unexpected hashes and arrays that weren't the ones you wanted 491 that shows recipes for using and printing out arrays of hashes, hashes
|
| /mirbsd/src/gnu/usr.bin/perl/ext/B/t/ |
| D | f_map | 27 @hashes = map +{ lc($_), 1 }, @array # EXPR, so needs , at end
|
| /mirbsd/src/sys/dev/usb/ |
| D | if_udav.c | 753 u_int8_t hashes[8]; in udav_setmulti() local 775 memset(hashes, 0x00, sizeof(hashes)); in udav_setmulti() 776 hashes[7] |= 0x80; /* broadcast address */ in udav_setmulti() 777 udav_csr_write(sc, UDAV_MAR, hashes, sizeof(hashes)); in udav_setmulti() 787 hashes[h>>3] |= 1 << (h & 0x7); in udav_setmulti() 796 udav_csr_write(sc, UDAV_MAR, hashes, sizeof(hashes)); in udav_setmulti()
|
| /mirbsd/src/sys/dev/pci/ |
| D | if_tl.c | 862 u_int32_t hashes[2] = { 0, 0 }; local 878 hashes[h/32] |= (1 << (h % 32)); 880 hashes[0] = hashes[1] = 0xffffffff; 894 hashes[0] = hashes[1] = 0xffffffff; 897 hashes[0] = hashes[1] = 0x00000000; 901 tl_dio_write32(sc, TL_HASH1, hashes[0]); 902 tl_dio_write32(sc, TL_HASH2, hashes[1]);
|
| D | if_sk.c | 592 u_int32_t hashes[2] = { 0, 0 }; in sk_setmulti() local 621 hashes[0] = 0xFFFFFFFF; in sk_setmulti() 622 hashes[1] = 0xFFFFFFFF; in sk_setmulti() 655 hashes[0] |= (1 << h); in sk_setmulti() 657 hashes[1] |= (1 << (h - 32)); in sk_setmulti() 668 SK_XM_WRITE_4(sc_if, XM_MAR0, hashes[0]); in sk_setmulti() 669 SK_XM_WRITE_4(sc_if, XM_MAR2, hashes[1]); in sk_setmulti() 674 SK_YU_WRITE_2(sc_if, YUKON_MCAH1, hashes[0] & 0xffff); in sk_setmulti() 675 SK_YU_WRITE_2(sc_if, YUKON_MCAH2, (hashes[0] >> 16) & 0xffff); in sk_setmulti() 676 SK_YU_WRITE_2(sc_if, YUKON_MCAH3, hashes[1] & 0xffff); in sk_setmulti() [all …]
|
| D | if_ste.c | 528 u_int32_t hashes[2] = { 0, 0 }; local 546 hashes[0] |= (1 << h); 548 hashes[1] |= (1 << (h - 32)); 552 CSR_WRITE_4(sc, STE_MAR0, hashes[0]); 553 CSR_WRITE_4(sc, STE_MAR1, hashes[1]);
|
| D | if_lge.c | 370 u_int32_t h = 0, hashes[2] = { 0, 0 }; local 392 hashes[0] |= (1 << h); 394 hashes[1] |= (1 << (h - 32)); 398 CSR_WRITE_4(sc, LGE_MAR0, hashes[0]); 399 CSR_WRITE_4(sc, LGE_MAR1, hashes[1]);
|
| D | if_wb.c | 563 u_int32_t hashes[2] = { 0, 0 }; local 591 hashes[0] |= (1 << h); 593 hashes[1] |= (1 << (h - 32)); 603 CSR_WRITE_4(sc, WB_MAR0, hashes[0]); 604 CSR_WRITE_4(sc, WB_MAR1, hashes[1]);
|
| /mirbsd/src/gnu/usr.bin/perl/ext/Storable/ |
| D | ChangeLog | 35 1. Storing restricted hashes in canonical order would SEGV. Fixed. 39 implementation of restricted hashes using PL_sv_undef 40 4. These changes allow a space optimisation for restricted hashes. 70 This release works around a 5.8.0 bug which caused hashes to not 203 and "restricted hashes" (readonly hashes and hash entries) 214 - retrieving of large hashes is now more efficient 441 Was wrongly optimizing for "undef" values in hashes by not 494 Fixed shared "undef" bug in hashes, which did not remain shared 612 able to correctly serialize tied SVs, i.e. tied arrays, hashes
|
| /mirbsd/src/sys/dev/ic/ |
| D | rtl81x9.c | 468 u_int32_t hashes[2] = { 0, 0 }; local 502 hashes[0] |= (1 << h); 504 hashes[1] |= (1 << (h - 32)); 515 CSR_WRITE_4(sc, RL_MAR0, hashes[0]); 516 CSR_WRITE_4(sc, RL_MAR4, hashes[1]);
|
| D | dc.c | 1021 u_int32_t hashes[2] = { 0, 0 }; local 1065 hashes[0] |= (1 << h); 1067 hashes[1] |= (1 << (h - 32)); 1071 CSR_WRITE_4(sc, DC_AL_MAR0, hashes[0]); 1072 CSR_WRITE_4(sc, DC_AL_MAR1, hashes[1]); 1084 u_int32_t hashes[2] = { 0, 0 }; local 1134 hashes[0] |= (1 << h); 1136 hashes[1] |= (1 << (h - 32)); 1141 CSR_WRITE_4(sc, DC_AX_FILTDATA, hashes[0]); 1143 CSR_WRITE_4(sc, DC_AX_FILTDATA, hashes[1]);
|
| /mirbsd/src/usr.sbin/httpd/src/support/SHA1/ |
| D | README.sha1 | 11 one of many possible hashes for the same password. Netscape
|
| /mirbsd/src/gnu/usr.bin/binutils/bfd/ |
| D | elf-m10300.c | 1849 struct elf_link_hash_entry **hashes; local 1858 hashes = elf_sym_hashes (input_bfd); 1859 end_hashes = hashes + symcount; 1871 struct elf_link_hash_entry **lhashes = hashes; 1923 for (; hashes < end_hashes; hashes++) 1925 hash = (struct elf32_mn10300_link_hash_entry *) *hashes; 2012 struct elf_link_hash_entry **hashes; local 2136 hashes = elf_sym_hashes (input_bfd); 2137 end_hashes = hashes + symcount; 2138 for (; hashes < end_hashes; hashes++) [all …]
|
| /mirbsd/src/lib/libssl/src/doc/apps/ |
| D | passwd.pod | 5 passwd - compute password hashes
|
| /mirbsd/src/gnu/usr.bin/perl/ext/Devel/Peek/ |
| D | Changes | 37 - Don't print IV for hashes as KEY is the same field
|