Searched refs:h2 (Results 1 - 25 of 61) sorted by relevance

123

/freebsd-10-stable/contrib/jemalloc/include/jemalloc/internal/
H A Dhash.h141 uint32_t h2 = seed; local
163 h1 = hash_rotl_32(h1, 19); h1 += h2;
166 k2 *= c2; k2 = hash_rotl_32(k2, 16); k2 *= c3; h2 ^= k2;
168 h2 = hash_rotl_32(h2, 17); h2 += h3;
169 h2 = h2*5 + 0x0bcaa747;
207 k2 *= c2; k2 = hash_rotl_32(k2, 16); k2 *= c3; h2 ^= k2;
218 h1 ^= len; h2
243 uint64_t h2 = seed; local
[all...]
/freebsd-10-stable/crypto/openssh/
H A Dpoly1305.c36 uint32_t h0,h1,h2,h3,h4; local
68 h2 = 0;
85 h2 += ((((uint64_t)t2 << 32) | t1) >> 20) & 0x3ffffff;
91 t[0] = mul32x32_64(h0,r0) + mul32x32_64(h1,s4) + mul32x32_64(h2,s3) + mul32x32_64(h3,s2) + mul32x32_64(h4,s1);
92 t[1] = mul32x32_64(h0,r1) + mul32x32_64(h1,r0) + mul32x32_64(h2,s4) + mul32x32_64(h3,s3) + mul32x32_64(h4,s2);
93 t[2] = mul32x32_64(h0,r2) + mul32x32_64(h1,r1) + mul32x32_64(h2,r0) + mul32x32_64(h3,s4) + mul32x32_64(h4,s3);
94 t[3] = mul32x32_64(h0,r3) + mul32x32_64(h1,r2) + mul32x32_64(h2,r1) + mul32x32_64(h3,r0) + mul32x32_64(h4,s4);
95 t[4] = mul32x32_64(h0,r4) + mul32x32_64(h1,r3) + mul32x32_64(h2,r2) + mul32x32_64(h3,r1) + mul32x32_64(h4,r0);
99 t[2] += b; h2 = (uint32_t)t[2] & 0x3ffffff; b = (uint32_t)(t[2] >> 26);
122 h2
[all...]
H A Dumac.c367 UINT64 h1,h2; local
376 h2 = *((UINT64 *)hp + 1);
387 h2 += MUL64((k4 + d0), (k8 + d4));
390 h2 += MUL64((k5 + d1), (k9 + d5));
393 h2 += MUL64((k6 + d2), (k10 + d6));
396 h2 += MUL64((k7 + d3), (k11 + d7));
404 ((UINT64 *)hp)[1] = h2;
414 UINT64 h1,h2,h3; local
423 h2 = *((UINT64 *)hp + 1);
436 h2
469 UINT64 h1,h2,h3,h4; local
[all...]
/freebsd-10-stable/contrib/apr/include/
H A Dapr_ring.h326 * Concatenate ring h2 onto the end of ring h1, leaving h2 empty.
328 * @param h2 Head of the ring to concatenate
332 #define APR_RING_CONCAT(h1, h2, elem, link) do { \
333 if (!APR_RING_EMPTY((h2), elem, link)) { \
335 APR_RING_FIRST((h2)), \
336 APR_RING_LAST((h2)), link); \
337 APR_RING_INIT((h2), elem, link); \
342 * Prepend ring h2 onto the beginning of ring h1, leaving h2 empt
[all...]
H A Dapr_hash.h223 * @param h2 The second of the tables to merge
225 * make values from h1 override values from h2 (same semantics as
232 const apr_hash_t *h2,
/freebsd-10-stable/usr.sbin/lpr/common_source/
H A Dnet.c188 char h1[NI_MAXHOST], h2[NI_MAXHOST]; local
235 h2[0] = '\0';
237 h2, sizeof(h2), NULL, 0,
240 if (strcmp(h1, h2) == 0)
/freebsd-10-stable/usr.sbin/lpr/pac/
H A Dpac.c407 register const struct hent *h1, *h2; local
411 h2 = *(const struct hent * const *)b;
413 r = h1->h_feetpages < h2->h_feetpages ?
414 -1 : h1->h_feetpages > h2->h_feetpages;
416 r = strcmp(h1->h_name, h2->h_name);
/freebsd-10-stable/sys/powerpc/include/
H A Dbus.h267 #define __bs_copy(sz, t, h1, o1, h2, o2, cnt) \
268 (*(t)->__bs_opname(c,sz))(h1, o1, h2, o2, cnt)
440 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
441 __bs_copy(1, t, h1, o1, h2, o2, c)
442 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
443 __bs_copy(2, t, h1, o1, h2, o2, c)
444 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
445 __bs_copy(4, t, h1, o1, h2, o2, c)
446 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \
447 __bs_copy(8, t, h1, o1, h2, o
[all...]
/freebsd-10-stable/sys/sparc64/include/
H A Dbus.h468 bus_size_t o1, bus_space_handle_t h2, bus_size_t o2, bus_size_t c)
472 bus_space_write_1(t, h1, o1, bus_space_read_1(t, h2, o2));
477 bus_size_t o1, bus_space_handle_t h2, bus_size_t o2, bus_size_t c)
481 bus_space_write_2(t, h1, o1, bus_space_read_2(t, h2, o2));
486 bus_size_t o1, bus_space_handle_t h2, bus_size_t o2, bus_size_t c)
490 bus_space_write_4(t, h1, o1, bus_space_read_4(t, h2, o2));
495 bus_size_t o1, bus_space_handle_t h2, bus_size_t o2, bus_size_t c)
499 bus_space_write_8(t, h1, o1, bus_space_read_8(t, h2, o2));
788 bus_size_t o1, bus_space_handle_t h2, bus_size_t o2, bus_size_t c)
792 bus_space_write_stream_1(t, h1, o1, bus_space_read_stream_1(t, h2,
467 bus_space_copy_region_1(bus_space_tag_t t, bus_space_handle_t h1, bus_size_t o1, bus_space_handle_t h2, bus_size_t o2, bus_size_t c) argument
476 bus_space_copy_region_2(bus_space_tag_t t, bus_space_handle_t h1, bus_size_t o1, bus_space_handle_t h2, bus_size_t o2, bus_size_t c) argument
485 bus_space_copy_region_4(bus_space_tag_t t, bus_space_handle_t h1, bus_size_t o1, bus_space_handle_t h2, bus_size_t o2, bus_size_t c) argument
494 bus_space_copy_region_8(bus_space_tag_t t, bus_space_handle_t h1, bus_size_t o1, bus_space_handle_t h2, bus_size_t o2, bus_size_t c) argument
787 bus_space_copy_region_stream_1(bus_space_tag_t t, bus_space_handle_t h1, bus_size_t o1, bus_space_handle_t h2, bus_size_t o2, bus_size_t c) argument
797 bus_space_copy_region_stream_2(bus_space_tag_t t, bus_space_handle_t h1, bus_size_t o1, bus_space_handle_t h2, bus_size_t o2, bus_size_t c) argument
807 bus_space_copy_region_stream_4(bus_space_tag_t t, bus_space_handle_t h1, bus_size_t o1, bus_space_handle_t h2, bus_size_t o2, bus_size_t c) argument
817 bus_space_copy_region_stream_8(bus_space_tag_t t, bus_space_handle_t h1, bus_size_t o1, bus_space_handle_t h2, bus_size_t o2, bus_size_t c) argument
[all...]
/freebsd-10-stable/contrib/subversion/subversion/libsvn_ra_svn/
H A Dcram.c59 int i, h1, h2;
64 h2 = hex_to_int(hexval[2 * i + 1]);
65 if (h1 == -1 || h2 == -1)
67 hashval[i] = (unsigned char)((h1 << 4) | h2);
58 int i, h1, h2; local
/freebsd-10-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dst_parse.c573 int c, h2; local
585 cp = id(cp, &h2);
586 ntdp = lookup(h2);
612 TYPEFILE(h2), TYPENUM(h2),
617 h2 = faketypenumber++;
621 "redefine type (%d,%d)\n", TYPEFILE(h2),
622 TYPENUM(h2));
630 h2);
633 (*rtdp)->t_id = h2;
[all...]
/freebsd-10-stable/sys/pc98/include/
H A Dbus.h286 #define bus_space_compare(t1, h1, t2, h2) \
287 i386_memio_compare((t1), (h1), (t2), (h2))
639 #define bus_space_copy_region_stream_1(t, h1, o1, h2, o2, c) \
640 bus_space_copy_region_1((t), (h1), (o1), (h2), (o2), (c))
641 #define bus_space_copy_region_stream_2(t, h1, o1, h2, o2, c) \
642 bus_space_copy_region_2((t), (h1), (o1), (h2), (o2), (c))
643 #define bus_space_copy_region_stream_4(t, h1, o1, h2, o2, c) \
644 bus_space_copy_region_4((t), (h1), (o1), (h2), (o2), (c))
/freebsd-10-stable/lib/libmd/
H A Dsha.h74 u_int32_t h0, h1, h2, h3, h4; member in struct:SHAstate_st
H A Dsha0c.c110 c->h2=INIT_DATA_h2;
299 C=c->h2;
391 c->h2=(c->h2+A)&0xffffffffL;
400 C=c->h2;
445 l=c->h2; nl2c(l,cp);
/freebsd-10-stable/usr.sbin/rpcbind/
H A Dpmap_svc.c297 int h1, h2, h3, h4, p1, p2; local
310 if (sscanf(ua, "%d.%d.%d.%d.%d.%d", &h1, &h2, &h3,
315 "%d.%d.%d.%d.%d.%d", h1, h2, h3, h4, p1, p2);
/freebsd-10-stable/crypto/openssl/crypto/sha/asm/
H A Dsha1-ia64.pl33 ($h0,$h1,$h2,$h3,$h4) = ("h0","h1","h2","h3","h4");
41 ($h0,$h1,$h2,$h3,$h4) = ("loc5","loc6","loc7","loc8","loc9");
253 { .mlx; ld4 $h2=[ctx],8
268 { .mmi; mov $C=$h2
288 add $h2=$h2,$C
295 { .mmi; st4 [ctx]=$h2,8
/freebsd-10-stable/crypto/openssl/crypto/sha/
H A Dsha_locl.h74 ll=(c)->h2; (void)HOST_l2c(ll,(s)); \
134 c->h2 = INIT_DATA_h2;
225 C = c->h2;
397 c->h2 = (c->h2 + A) & 0xffffffffL;
406 C = c->h2;
455 C = c->h2;
483 c->h2 = (c->h2 + C) & 0xffffffffL;
492 C = c->h2;
[all...]
H A Dsha.h101 SHA_LONG h0, h1, h2, h3, h4; member in struct:SHAstate_st
/freebsd-10-stable/contrib/unbound/validator/
H A Dval_nsec3.c499 struct nsec3_cached_hash* h2 = (struct nsec3_cached_hash*)c2; local
502 int c = query_dname_compare(h1->dname, h2->dname);
508 nsec3_get_algo(h2->nsec3, h2->rr)) {
510 nsec3_get_algo(h2->nsec3, h2->rr))
515 nsec3_get_iter(h2->nsec3, h2->rr)) {
517 nsec3_get_iter(h2->nsec3, h2
[all...]
/freebsd-10-stable/sys/fs/ext2fs/
H A Dext2_hash.c171 uint32_t h0, h1 = 0x12A3FE2D, h2 = 0x37ABE8F9; local
183 h0 = h2 + (h1 ^ (val * multi));
186 h2 = h1;
/freebsd-10-stable/crypto/openssl/apps/
H A Ds_socket.c389 struct hostent *h1, *h2; local
460 h2 = GetHostByName(*host);
461 if (h2 == NULL) {
466 if (h2->h_addrtype != AF_INET) {
/freebsd-10-stable/lib/libc/net/
H A Drcmd.c719 char h1[NI_MAXHOST], h2[NI_MAXHOST]; local
749 h2[0] = '\0';
750 if (getnameinfo(r->ai_addr, r->ai_addrlen, h2, sizeof(h2),
753 if (strcmp(h1, h2) == 0) {
/freebsd-10-stable/sys/arm/include/
H A Dbus.h267 #define __bs_copy(sz, t, h1, o1, h2, o2, cnt) \
268 (*(t)->__bs_opname(c,sz))((t), h1, o1, h2, o2, cnt)
474 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
475 __bs_copy(1, t, h1, o1, h2, o2, c)
476 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
477 __bs_copy(2, t, h1, o1, h2, o2, c)
478 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
479 __bs_copy(4, t, h1, o1, h2, o2, c)
480 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \
481 __bs_copy(8, t, h1, o1, h2, o
[all...]
/freebsd-10-stable/sys/mips/include/
H A Dbus.h252 #define __bs_copy(sz, t, h1, o1, h2, o2, cnt) \
253 (*(t)->__bs_opname(c,sz))((t)->bs_cookie, h1, o1, h2, o2, cnt)
437 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
438 __bs_copy(1, t, h1, o1, h2, o2, c)
439 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
440 __bs_copy(2, t, h1, o1, h2, o2, c)
441 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
442 __bs_copy(4, t, h1, o1, h2, o2, c)
443 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \
444 __bs_copy(8, t, h1, o1, h2, o
[all...]
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/
H A DHashing.h267 uint64_t h0, h1, h2, h3, h4, h5, h6; member in struct:llvm::hashing::detail::hash_state
302 h2 = rotate(h2 + h5, 33) * k1;
306 h5 = h2 + h6;
309 std::swap(h2, h0);
315 return hash_16_bytes(hash_16_bytes(h3, h5) + shift_mix(h1) * k1 + h2,

Completed in 387 milliseconds

123