Searched refs:h3 (Results 1 - 20 of 20) sorted by relevance

/freebsd-11-stable/crypto/openssh/
H A Dpoly1305.c36 uint32_t h0,h1,h2,h3,h4; local
69 h3 = 0;
86 h3 += ((((uint64_t)t3 << 32) | t2) >> 14) & 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);
100 t[3] += b; h3 = (uint32_t)t[3] & 0x3ffffff; b = (uint32_t)(t[3] >> 26);
123 h3
[all...]
H A Dumac.c414 UINT64 h1,h2,h3; local
424 h3 = *((UINT64 *)hp + 2);
437 h3 += MUL64((k8 + d0), (k12 + d4));
441 h3 += MUL64((k9 + d1), (k13 + d5));
445 h3 += MUL64((k10 + d2), (k14 + d6));
449 h3 += MUL64((k11 + d3), (k15 + d7));
459 ((UINT64 *)hp)[2] = h3;
469 UINT64 h1,h2,h3,h4; local
480 h3 = *((UINT64 *)hp + 2);
495 h3
[all...]
/freebsd-11-stable/contrib/jemalloc/include/jemalloc/internal/
H A Dhash.h164 uint32_t h3 = seed; local
190 h2 = hash_rotl_32(h2, 17); h2 += h3;
193 k3 *= c3; k3 = hash_rotl_32(k3, 17); k3 *= c4; h3 ^= k3;
195 h3 = hash_rotl_32(h3, 15); h3 += h4;
196 h3 = h3*5 + 0x96cd1c35;
223 k3 *= c3; k3 = hash_rotl_32(k3, 17); k3 *= c4; h3 ^= k3;
240 h1 ^= len; h2 ^= len; h3
[all...]
/freebsd-11-stable/contrib/wpa/src/crypto/
H A Dfips_prf_openssl.c36 context.h3 = state[3];
42 state[3] = context.h3;
/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.c111 c->h3=INIT_DATA_h3;
300 D=c->h3;
392 c->h3=(c->h3+B)&0xffffffffL;
401 D=c->h3;
446 l=c->h3; nl2c(l,cp);
H A Dsha1c.c138 c->h3=INIT_DATA_h3;
331 D=c->h3;
423 c->h3=(c->h3+B)&0xffffffffL;
432 D=c->h3;
482 l=c->h3; nl2c(l,cp);
/freebsd-11-stable/sys/opencrypto/
H A Dgfmult.c89 struct gf128 h2, h3, h4; local
97 h3 = gf128_mul(h, &t->tbls[1]);
98 gf128_genmultable(h3, &t->tbls[2]);
/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);
H A Drpcb_svc_com.c454 int h1, h2, h3, h4, p1, p2; local
459 &h1, &h2, &h3, &h4, &p1, &p2) != 6)
1404 int h1, h2, h3, h4, p1, p2; local
1418 &h1, &h2, &h3, &h4, &p1, &p2) != 6)
/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");
180 add $h3=$h3,$c };; // wrap up
255 { .mlx; ld4 $h3=[tmp0]
269 mov $D=$h3
296 st4 [tmp0]=$h3 };;
/freebsd-11-stable/crypto/openssl/crypto/sha/
H A Dsha_locl.h75 ll=(c)->h3; (void)HOST_l2c(ll,(s)); \
135 c->h3 = INIT_DATA_h3;
226 D = c->h3;
398 c->h3 = (c->h3 + B) & 0xffffffffL;
407 D = c->h3;
456 D = c->h3;
484 c->h3 = (c->h3 + D) & 0xffffffffL;
493 D = c->h3;
[all...]
H A Dsha.h101 SHA_LONG h0, h1, h2, h3, h4; member in struct:SHAstate_st
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DHashing.h260 uint64_t h0 = 0, h1 = 0, h2 = 0, h3 = 0, h4 = 0, h5 = 0, h6 = 0; member in struct:llvm::hashing::detail::hash_state
290 h0 = rotate(h0 + h1 + h3 + fetch64(s + 8), 37) * k1;
293 h1 += h3 + fetch64(s + 40);
295 h3 = h4 * k1;
297 mix_32_bytes(s, h3, h4);
307 return hash_16_bytes(hash_16_bytes(h3, h5) + shift_mix(h1) * k1 + h2,
/freebsd-11-stable/sys/arm/allwinner/
H A Daw_machdep.c258 FDT_PLATFORM_DEF(h3, "h3", 0, "allwinner,sun8i-h3", 200);
/freebsd-11-stable/crypto/openssl/crypto/evp/
H A De_aes_cbc_hmac_sha1.c275 ctx->D[i] = key->md.h3;
383 ctx->D[i] = key->tail.h3;
396 ctx->D[i] = key->tail.h3;
671 pmac->u[3] |= key->md.h3 & mask;
687 pmac->u[3] |= key->md.h3 & mask;
699 pmac->u[3] |= key->md.h3 & mask;
/freebsd-11-stable/crypto/openssl/ssl/
H A Ds3_cbc.c331 l2n(sha1->h3, md_out);
/freebsd-11-stable/contrib/libpcap/
H A Dpcap-linux.c384 struct tpacket_block_desc *h3; member in union:thdr
4984 return (h.h3->hdr.bh1.block_status);
5572 if (h.h3->hdr.bh1.block_status == TP_STATUS_KERNEL) {
5584 if (h.h3->hdr.bh1.block_status == TP_STATUS_KERNEL) {
5599 if (h.h3->hdr.bh1.block_status == TP_STATUS_KERNEL)
5602 handlep->current_packet = h.raw + h.h3->hdr.bh1.offset_to_first_pkt;
5603 handlep->packets_left = h.h3->hdr.bh1.num_pkts;
5652 h.h3->hdr.bh1.block_status = TP_STATUS_KERNEL;
/freebsd-11-stable/contrib/binutils/bfd/
H A Dcoff-ppc.c1536 h3 = N_(" Offset spelling (if present)\n");
1547 fprintf (file, _(h3));
1529 h3 = N_(" Offset spelling (if present)\\n"); variable
/freebsd-11-stable/contrib/netbsd-tests/usr.bin/netpgpverify/
H A Dt_netpgpverify.sh2449 t/h3/NEqpTQq3la02RVF9ZuwEl9vyKlrgfp1bK3raRlRzwAKaBcG0d33ikHeXpBk
3563 ZuztjrFdoJlRr6C5GPK/jH//n//h3/3yP/zi/64//n799c//+kUG2ByD5hb+JIVY
5207 oXFypghFTQsrysQy6ZrHpTapw6ehvHVNjdBkljDkCibf42V1rTitrFlJYuQVK/h3

Completed in 184 milliseconds