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

123

/freebsd-11-stable/contrib/jemalloc/include/jemalloc/internal/
H A Dhash.h163 uint32_t h2 = seed; local
185 h1 = hash_rotl_32(h1, 19); h1 += h2;
188 k2 *= c2; k2 = hash_rotl_32(k2, 16); k2 *= c3; h2 ^= k2;
190 h2 = hash_rotl_32(h2, 17); h2 += h3;
191 h2 = h2*5 + 0x0bcaa747;
229 k2 *= c2; k2 = hash_rotl_32(k2, 16); k2 *= c3; h2 ^= k2;
240 h1 ^= len; h2
265 uint64_t h2 = seed; local
[all...]
/freebsd-11-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-11-stable/sys/contrib/ck/src/
H A Dck_ht_hash.h240 uint32_t h2 = (uint32_t)(seed >> 32); local
253 h2 *= m; h2 ^= k2;
267 case 3: h2 ^= ((const unsigned char*)data)[2] << 16;
269 case 2: h2 ^= ((const unsigned char*)data)[1] << 8;
271 case 1: h2 ^= ((const unsigned char*)data)[0];
272 h2 *= m;
275 h1 ^= h2 >> 18; h1 *= m;
276 h2 ^= h1 >> 22; h2 *
[all...]
/freebsd-11-stable/sys/arm/include/
H A Dcpu.h27 uint64_t h, h2; local
41 h2 = (uint64_t)atomic_load_acq_32(&ccnt_hi[cpu]);
42 if (h != h2)
44 return (h2 << 32 | l);
/freebsd-11-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.h224 * @param h2 The second of the tables to merge
226 * make values from h1 override values from h2 (same semantics as
233 const apr_hash_t *h2,
/freebsd-11-stable/tests/sys/netgraph/
H A Dutil.h41 #define ng_connect(p1,h1,p2,h2) \
42 _ng_connect(p1,h1,p2,h2,__FILE__,__LINE__)
48 #define ng_mkpeer(p1,h1,t,h2) \
49 _ng_mkpeer(p1,h1,t,h2,__FILE__,__LINE__)
/freebsd-11-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-11-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-11-stable/contrib/wpa/src/crypto/
H A Dfips_prf_openssl.c35 context.h2 = state[2];
41 state[2] = context.h2;
/freebsd-11-stable/contrib/mdocml/
H A Dmansearch.c314 struct ohash *hand, *h1, *h2; local
326 h2 = manmerge(e, NULL);
327 if (ohash_entries(h2) < ohash_entries(hand)) {
328 h1 = h2;
329 h2 = hand;
339 if (ohash_find(h2, ohash_lookup_memory(h2,
351 for (res = ohash_first(h2, &slot2); res != NULL;
352 res = ohash_next(h2, &slot2))
354 ohash_delete(h2);
[all...]
/freebsd-11-stable/sys/opencrypto/
H A Dgfmult.c89 struct gf128 h2, h3, h4; local
93 h2 = gf128_mul(h, &t->tbls[0]);
95 gf128_genmultable(h2, &t->tbls[1]);
100 h4 = gf128_mul(h2, &t->tbls[1]);
/freebsd-11-stable/sys/powerpc/include/
H A Dbus.h272 #define __bs_copy(sz, t, h1, o1, h2, o2, cnt) \
273 (*(t)->__bs_opname(c,sz))(h1, o1, h2, o2, cnt)
445 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
446 __bs_copy(1, t, h1, o1, h2, o2, c)
447 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
448 __bs_copy(2, t, h1, o1, h2, o2, c)
449 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
450 __bs_copy(4, t, h1, o1, h2, o2, c)
451 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \
452 __bs_copy(8, t, h1, o1, h2, o
[all...]
/freebsd-11-stable/sys/sparc64/include/
H A Dbus.h464 bus_size_t o1, bus_space_handle_t h2, bus_size_t o2, bus_size_t c)
468 bus_space_write_1(t, h1, o1, bus_space_read_1(t, h2, o2));
473 bus_size_t o1, bus_space_handle_t h2, bus_size_t o2, bus_size_t c)
477 bus_space_write_2(t, h1, o1, bus_space_read_2(t, h2, o2));
482 bus_size_t o1, bus_space_handle_t h2, bus_size_t o2, bus_size_t c)
486 bus_space_write_4(t, h1, o1, bus_space_read_4(t, h2, o2));
491 bus_size_t o1, bus_space_handle_t h2, bus_size_t o2, bus_size_t c)
495 bus_space_write_8(t, h1, o1, bus_space_read_8(t, h2, o2));
784 bus_size_t o1, bus_space_handle_t h2, bus_size_t o2, bus_size_t c)
788 bus_space_write_stream_1(t, h1, o1, bus_space_read_stream_1(t, h2,
463 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
472 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
481 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
490 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
783 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
793 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
803 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
813 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-11-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-11-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-11-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-11-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-11-stable/usr.sbin/rpcbind/
H A Dpmap_svc.c296 int h1, h2, h3, h4, p1, p2; local
309 if (sscanf(ua, "%d.%d.%d.%d.%d.%d", &h1, &h2, &h3,
314 "%d.%d.%d.%d.%d.%d", h1, h2, h3, h4, p1, p2);
/freebsd-11-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-11-stable/sys/arm64/include/
H A Dbus.h274 #define __bs_copy(sz, t, h1, o1, h2, o2, cnt) \
275 (*(t)->__bs_opname(c,sz))((t)->bs_cookie, h1, o1, h2, o2, cnt)
458 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
459 __bs_copy(1, t, h1, o1, h2, o2, c)
460 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
461 __bs_copy(2, t, h1, o1, h2, o2, c)
462 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
463 __bs_copy(4, t, h1, o1, h2, o2, c)
464 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \
465 __bs_copy(8, t, h1, o1, h2, o
[all...]
/freebsd-11-stable/sys/riscv/include/
H A Dbus.h274 #define __bs_copy(sz, t, h1, o1, h2, o2, cnt) \
275 (*(t)->__bs_opname(c,sz))((t)->bs_cookie, h1, o1, h2, o2, cnt)
458 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
459 __bs_copy(1, t, h1, o1, h2, o2, c)
460 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
461 __bs_copy(2, t, h1, o1, h2, o2, c)
462 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
463 __bs_copy(4, t, h1, o1, h2, o2, c)
464 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \
465 __bs_copy(8, t, h1, o1, h2, o
[all...]
/freebsd-11-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...]

Completed in 224 milliseconds

123