Home
last modified time | relevance | path

Searched refs:h0 (Results 1 – 16 of 16) sorted by relevance

/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/
H A Dpoly1305_donna64.h77 h0 = st->h[0]; in poly1305_blocks()
123 h0 = h0 & 0xfffffffffff; in poly1305_blocks()
130 st->h[0] = h0; in poly1305_blocks()
156 h0 = st->h[0]; in poly1305_finish()
165 h0 += c * 5; in poly1305_finish()
166 c = (h0 >> 44); in poly1305_finish()
174 h0 += c * 5; in poly1305_finish()
175 c = (h0 >> 44); in poly1305_finish()
180 g0 = h0 + 5; in poly1305_finish()
194 h0 = (h0 & c) | g0; in poly1305_finish()
[all …]
H A Dpoly1305_donna32.h77 h0 = st->h[0]; in poly1305_blocks()
123 h0 += c * 5; in poly1305_blocks()
125 h0 = h0 & 0x3ffffff; in poly1305_blocks()
132 st->h[0] = h0; in poly1305_blocks()
160 h0 = st->h[0]; in poly1305_finish()
177 h0 += c * 5; in poly1305_finish()
178 c = h0 >> 26; in poly1305_finish()
179 h0 = h0 & 0x3ffffff; in poly1305_finish()
183 g0 = h0 + 5; in poly1305_finish()
206 h0 = (h0 & mask) | g0; in poly1305_finish()
[all …]
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_core/ed25519/ref10/fe_25_5/
H A Dfe.h8 int64_t h0 = load_4(s); in fe25519_frombytes() local
31 h0 += carry9 * 19; in fe25519_frombytes()
46 carry0 = (h0 + (int64_t)(1L << 25)) >> 26; in fe25519_frombytes()
48 h0 -= carry0 * ((uint64_t) 1L << 26); in fe25519_frombytes()
62 h[0] = (int32_t) h0; in fe25519_frombytes()
102 int32_t h0 = f[0]; in fe25519_reduce() local
117 q = (h0 + q) >> 26; in fe25519_reduce()
129 h0 += 19 * q; in fe25519_reduce()
132 carry0 = h0 >> 26; in fe25519_reduce()
134 h0 -= carry0 * ((uint32_t) 1L << 26); in fe25519_reduce()
[all …]
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/
H A Dfe_frombytes_sandy2x.c33 uint64_t h0 = load_4(s); in fe_frombytes() local
54 carry9 = h9 >> 25; h0 += carry9 * 19; h9 &= 0x1FFFFFF; in fe_frombytes()
60 carry0 = h0 >> 26; h1 += carry0; h0 &= 0x3FFFFFF; in fe_frombytes()
66 h[0] = h0; in fe_frombytes()
/f-stack/freebsd/contrib/libsodium/src/libsodium/include/sodium/private/
H A Ded25519_ref10_fe_25_5.h43 int32_t h0 = f[0] + g[0]; in fe25519_add() local
54 h[0] = h0; in fe25519_add()
92 h[0] = h0; in fe25519_sub()
117 int32_t h0 = -f[0]; in fe25519_neg() local
128 h[0] = h0; in fe25519_neg()
603 h0 += carry9 * 19; in fe25519_mul()
614 h[0] = (int32_t) h0; in fe25519_mul()
779 h0 += carry9 * 19; in fe25519_sq()
915 h0 += h0; in fe25519_sq2()
962 h0 += carry9 * 19; in fe25519_sq2()
[all …]
H A Ded25519_ref10_fe_51.h35 uint64_t h0 = f[0] + g[0]; in fe25519_add() local
41 h[0] = h0; in fe25519_add()
56 uint64_t h0, h1, h2, h3, h4; in fe25519_sub() local
58 h0 = g[0]; in fe25519_sub()
64 h1 += h0 >> 51; in fe25519_sub()
65 h0 &= mask; in fe25519_sub()
72 h0 += 19ULL * (h4 >> 51); in fe25519_sub()
75 h0 = (f[0] + 0xfffffffffffdaULL) - h0; in fe25519_sub()
81 h[0] = h0; in fe25519_sub()
511 h0 += (a >> 51) * 19ULL; in fe25519_scalar_product()
[all …]
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/
H A Dpoly1305_sse2.c724 h0 += c * 5; in poly1305_blocks()
725 c = (h0 >> 44); in poly1305_blocks()
733 h0 += c * 5; in poly1305_blocks()
734 c = (h0 >> 44); in poly1305_blocks()
738 g0 = h0 + 5; in poly1305_blocks()
748 h0 = (h0 & nc) | (g0 & c); in poly1305_blocks()
752 st->H.h[0] = h0; in poly1305_blocks()
806 uint64_t h0, h1, h2; in poly1305_finish_ext() local
830 h0 = st->H.h[0]; in poly1305_finish_ext()
835 h0 = ((h0) | (h1 << 44)); in poly1305_finish_ext()
[all …]
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_core/ed25519/ref10/fe_51/
H A Dfe.h9 uint64_t h0, h1, h2, h3, h4; in fe25519_frombytes() local
11 h0 = (LOAD64_LE(s ) ) & mask; in fe25519_frombytes()
17 h[0] = h0; in fe25519_frombytes()
/f-stack/freebsd/crypto/openssl/
H A Dossl_sha1.c33 ll=(c)->h0; (void)HOST_l2c(ll,(s)); \
56 c->h0 = INIT_DATA_h0; in HASH_INIT()
H A Dossl_sha.h31 SHA_LONG h0, h1, h2, h3, h4; member
/f-stack/freebsd/contrib/openzfs/module/icp/asm-x86_64/aes/
H A Daestab.h104 d_1(uint8_t, t_dec(s, box), sb_data, h0);
107 d_1(uint8_t, t_dec(i, box), isb_data, h0);
/f-stack/freebsd/crypto/openssl/arm/
H A Dpoly1305-armv4.S427 @ d0 = h0*r0 + h4*5*r1 + h3*5*r2 + h2*5*r3 + h1*5*r4
428 @ d1 = h1*r0 + h0*r1 + h4*5*r2 + h3*5*r3 + h2*5*r4
429 @ d2 = h2*r0 + h1*r1 + h0*r2 + h4*5*r3 + h3*5*r4
431 @ d4 = h4*r0 + h3*r1 + h2*r2 + h1*r3 + h0*r4
780 @ d4 = h4*r0 + h3*r1 + h2*r2 + h1*r3 + h0*r4
886 vadd.i64 q6,q6,q4 @ h0 -> h1
905 vaddl.u32 q5,d10,d30 @ h4 -> h0 [widen for a sec]
919 vadd.i32 d12,d12,d30 @ h0 -> h1
1053 vadd.i64 q6,q6,q4 @ h0 -> h1
1065 vadd.i64 q5,q5,q15 @ h4 -> h0
[all …]
/f-stack/freebsd/contrib/zstd/lib/compress/
H A Dzstd_fast.c93 size_t const h0 = ZSTD_hashPtr(ip0, hlog, mls); in ZSTD_compressBlock_fast_generic() local
99 U32 const matchIndex0 = hashTable[h0]; in ZSTD_compressBlock_fast_generic()
110 hashTable[h0] = current0; /* update hash table */ in ZSTD_compressBlock_fast_generic()
/f-stack/dpdk/lib/librte_pipeline/
H A Drte_swx_pipeline.c2529 struct header_out_runtime *h0 = &t->headers_out[0]; in emit_handler() local
2535 (h0->ptr + h0->n_bytes == t->ptr)) { in emit_handler()
2538 t->pkt.offset -= h0->n_bytes; in emit_handler()
2539 t->pkt.length += h0->n_bytes; in emit_handler()
2547 (h0->ptr == h0->ptr0)) { in emit_handler()
2552 offset = h0->n_bytes + h1->n_bytes; in emit_handler()
2553 memcpy(t->ptr - offset, h0->ptr, h0->n_bytes); in emit_handler()
/f-stack/app/nginx-1.16.1/src/http/modules/
H A Dngx_http_fastcgi_module.c141 ngx_http_fastcgi_header_t h0; member
/f-stack/freebsd/contrib/openzfs/module/zstd/lib/
H A Dzstd.c17980 size_t const h0 = ZSTD_hashPtr(ip0, hlog, mls); in ZSTD_compressBlock_fast_generic() local
17986 U32 const matchIndex0 = hashTable[h0]; in ZSTD_compressBlock_fast_generic()
17997 hashTable[h0] = current0; /* update hash table */ in ZSTD_compressBlock_fast_generic()