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

1 2 3

  /src/external/gpl3/gcc.old/dist/gcc/
tree-streamer.h 53 /* The node hashes (if available). */
54 vec<hashval_t> hashes; member in struct:streamer_tree_cache_d
104 return cache->hashes[ix];
  /src/tests/lib/libc/stdlib/
t_mi_vector_hash.c 50 uint32_t hashes[3]; member in struct:testvector
75 uint32_t hashes[3]; local
82 mi_vector_hash(buf + j, len, 0, hashes);
83 ATF_CHECK_EQ(hashes[0], testv[i].hashes[0]);
84 ATF_CHECK_EQ(hashes[1], testv[i].hashes[1]);
85 ATF_CHECK_EQ(hashes[2], testv[i].hashes[2]);
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
GlobalTypeTableBuilder.cpp 78 ArrayRef<GloballyHashedType> GlobalTypeTableBuilder::hashes() const { function in class:GlobalTypeTableBuilder
  /src/external/gpl3/gcc/dist/gcc/
tree-streamer.h 53 /* The node hashes (if available). */
54 vec<hashval_t> hashes; member in struct:streamer_tree_cache_d
104 return cache->hashes[ix];
  /src/usr.bin/nbperf/
graph2.c 179 uint32_t hashes[NBPERF_MAX_HASH_SIZE]; local
196 nbperf->keys[i], nbperf->keylens[i], hashes);
199 e->vertices[j] = hashes[j] % graph->v;
  /src/external/mpl/bind/dist/bin/tests/system/sig0/
tests_sig0.py 19 from cryptography.hazmat.primitives import hashes namespace
93 sig_rdata_pre_sig + msg_bytes, padding.PKCS1v15(), hashes.SHA256()
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
hash.h 312 uint64_t hashes[2]; local
313 hash_x86_128(key, (int)len, seed, hashes);
314 r_hash[0] = (size_t)hashes[0];
315 r_hash[1] = (size_t)hashes[1];
  /src/external/bsd/jemalloc/include/jemalloc/internal/
hash.h 312 uint64_t hashes[2]; local
313 hash_x86_128(key, (int)len, seed, hashes);
314 r_hash[0] = (size_t)hashes[0];
315 r_hash[1] = (size_t)hashes[1];
  /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/
hash.h 313 uint64_t hashes[2]; local
314 hash_x86_128(key, (int)len, seed, hashes);
315 r_hash[0] = (size_t)hashes[0];
316 r_hash[1] = (size_t)hashes[1];
  /src/external/bsd/jemalloc.old/include/jemalloc/internal/
hash.h 313 uint64_t hashes[2]; local
314 hash_x86_128(key, (int)len, seed, hashes);
315 r_hash[0] = (size_t)hashes[0];
316 r_hash[1] = (size_t)hashes[1];
  /src/common/lib/libc/cdb/
cdbr.c 279 uint32_t hashes[3], idx; local
286 mi_vector_hash(key, key_len, cdbr->seed, hashes);
288 hashes[0] = fast_remainder32(hashes[0], cdbr->entries_index,
291 hashes[1] = fast_remainder32(hashes[1], cdbr->entries_index,
294 hashes[2] = fast_remainder32(hashes[2], cdbr->entries_index,
298 idx = get_uintX(cdbr->hash_base, hashes[0], cdbr->index_size);
299 idx += get_uintX(cdbr->hash_base, hashes[1], cdbr->index_size)
    [all...]
  /src/sys/arch/arm/at91/
at91emac.c 758 uint32_t h, nma = 0, hashes[2] = { 0, 0 }; local
790 hashes[0] = 0xffffffffUL;
791 hashes[1] = 0xffffffffUL;
810 hashes[ h / 32 ] |= (1 << (h % 32));
860 EMAC_WRITE(ETH_HSH, hashes[0]);
861 EMAC_WRITE(ETH_HSL, hashes[1]);
  /src/sys/arch/arm/ep93xx/
epe.c 695 uint32_t h, nma = 0, hashes[2] = { 0, 0 }; local
722 hashes[0] = 0xffffffffUL;
723 hashes[1] = 0xffffffffUL;
742 hashes[ h / 32 ] |= (1 << (h % 32));
763 if (hashes[0] != 0 && hashes[1] != 0) {
765 EPE_WRITE(HashTbl, hashes[0]);
766 EPE_WRITE(HashTbl + 4, hashes[1]);
  /src/sys/dev/usb/
if_udav.c 565 uint8_t hashes[8]; local
588 memset(hashes, 0x00, sizeof(hashes));
589 hashes[7] |= 0x80; /* broadcast address */
590 udav_csr_write(un, UDAV_MAR, hashes, sizeof(hashes));
606 hashes[h>>3] |= 1 << (h & 0x7);
616 udav_csr_write(un, UDAV_MAR, hashes, sizeof(hashes));
  /src/usr.sbin/syslogd/
sign.h 77 * the hashes in every SB are grouped into n divisions:
78 * * the 1st hashcount/n hashes are sent for the 1st time
79 * * the 2nd hashcount/n hashes are sent for the 2nd time
81 * * the n-th hashcount/n hashes are sent for the n-th time
104 /* the maximum number of hashes pec signature block */
106 /* number of hashes in one signature block */
134 /* queue of C-Strings (here used for hashes) */
154 struct string_queue_head hashes; member in struct:signature_group_t
  /src/usr.sbin/veriexecgen/
veriexecgen.c 101 static hash_t hashes[] = { variable
163 for (hash = hashes; hash->hashname != NULL; hash++)
  /src/external/bsd/jemalloc/dist/src/
ckh.c 19 * fewest that can work, and supporting multiple hashes is an implementation
25 * #hashes | 1 | 2 | 4 | 8 |
81 size_t hashes[2], bucket, cell; local
85 ckh->hash(key, hashes);
88 bucket = hashes[0] & ((ZU(1) << ckh->lg_curbuckets) - 1);
95 bucket = hashes[1] & ((ZU(1) << ckh->lg_curbuckets) - 1);
137 size_t hashes[2], bucket, tbucket; local
149 * were an item for which both hashes indicated the same
167 ckh->hash(key, hashes);
168 tbucket = hashes[1] & ((ZU(1) << ckh->lg_curbuckets) - 1)
205 size_t hashes[2], bucket; local
    [all...]
  /src/external/bsd/jemalloc.old/dist/src/
ckh.c 19 * fewest that can work, and supporting multiple hashes is an implementation
25 * #hashes | 1 | 2 | 4 | 8 |
82 size_t hashes[2], bucket, cell; local
86 ckh->hash(key, hashes);
89 bucket = hashes[0] & ((ZU(1) << ckh->lg_curbuckets) - 1);
96 bucket = hashes[1] & ((ZU(1) << ckh->lg_curbuckets) - 1);
138 size_t hashes[2], bucket, tbucket; local
150 * were an item for which both hashes indicated the same
168 ckh->hash(key, hashes);
169 tbucket = hashes[1] & ((ZU(1) << ckh->lg_curbuckets) - 1)
206 size_t hashes[2], bucket; local
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/
passwd.c 64 char **hashes, idNul; local
267 hashes = default_passwd_hash;
270 hashes = (char **)defhash;
274 for ( i=0; hashes[i]; i++ ) {
275 slap_passwd_hash_type( &qpw->rs_new, &hash, hashes[i], &rs->sr_text );
293 if ( hashes[i] ) {
  /src/usr.bin/cksum/
cksum.c 121 } hashes[] = { variable in typeref:struct:hash
178 for (hash = hashes; hash->hashname != NULL; hash++)
202 while (hashes[i].hashname != NULL) {
203 if (!strcasecmp(hashes[i].hashname, optarg)) {
204 hash = &hashes[i];
349 for (nhash = hashes ;
  /src/external/mpl/bind/dist/bin/tests/system/nsec3/ans7/
ans.py 45 from cryptography.hazmat.primitives import hashes namespace
78 Auto-discover NSEC3 owner names and next hashes from the signed zone.
169 der_sig = private_key.sign(sign_data, ec.ECDSA(hashes.SHA256()))
  /src/lib/libc/cdb/
cdbw.c 131 uint32_t hashes[3]; local
247 uint32_t hashes[3]; local
256 mi_vector_hash(key, keylen, 0, hashes);
258 head = cdbw->hash + (hashes[0] & (cdbw->hash_size - 1));
262 if (key_hash->hashes[0] != hashes[0])
264 if (key_hash->hashes[1] != hashes[1])
266 if (key_hash->hashes[2] != hashes[2]
429 uint32_t hashes[3]; local
    [all...]
  /src/sys/dev/cadence/
if_cemac.c 1089 uint32_t h, nma = 0, hashes[2] = { 0, 0 }; local
1123 hashes[0] = 0xffffffffUL;
1124 hashes[1] = 0xffffffffUL;
1143 hashes[h / 32] |= (1 << (h % 32));
1145 hashes[0] = 0xffffffffUL;
1146 hashes[1] = 0xffffffffUL;
1197 CEMAC_GEM_WRITE(HSH, hashes[0]);
1198 CEMAC_GEM_WRITE(HSL, hashes[1]);
  /src/sys/dev/ic/
lan9118.c 873 uint32_t mac_cr, h, hashes[2] = { 0, 0 }; local
911 hashes[h >> 5] |= 1 << (h & 0x1f);
918 lan9118_mac_writereg(sc, LAN9118_HASHH, hashes[1]);
919 lan9118_mac_writereg(sc, LAN9118_HASHL, hashes[0]);
rtl81x9.c 528 uint32_t hashes[2] = { 0, 0 }; local
563 hashes[0] |= __BIT(h);
565 hashes[1] |= __BIT(h - 32);
587 CSR_WRITE_4(sc, RTK_MAR0, bswap32(hashes[1]));
588 CSR_WRITE_4(sc, RTK_MAR4, bswap32(hashes[0]));
590 CSR_WRITE_4(sc, RTK_MAR0, hashes[0]);
591 CSR_WRITE_4(sc, RTK_MAR4, hashes[1]);

Completed in 35 milliseconds

1 2 3