Home
last modified time | relevance | path

Searched refs:h2 (Results 1 – 25 of 37) sorted by relevance

12

/f-stack/app/redis-5.0.5/deps/jemalloc/include/jemalloc/internal/
H A Dhash.h156 h2 = hash_rotl_32(h2, 17); h2 += h3; in hash_x86_128()
157 h2 = h2*5 + 0x0bcaa747; in hash_x86_128()
212 h2 = hash_fmix_32(h2); in hash_x86_128()
251 h2 = hash_rotl_64(h2, 31); h2 += h1; in hash_x64_128()
252 h2 = h2*5 + 0x38495ab5; in hash_x64_128()
287 h1 += h2; in hash_x64_128()
288 h2 += h1; in hash_x64_128()
291 h2 = hash_fmix_64(h2); in hash_x64_128()
293 h1 += h2; in hash_x64_128()
294 h2 += h1; in hash_x64_128()
[all …]
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/
H A Dpoly1305_donna64.h79 h2 = st->h[2]; in poly1305_blocks()
99 MUL(d, h2, s1); in poly1305_blocks()
104 MUL(d, h2, s2); in poly1305_blocks()
109 MUL(d, h2, r0); in poly1305_blocks()
132 st->h[2] = h2; in poly1305_blocks()
158 h2 = st->h[2]; in poly1305_finish()
162 h2 += c; in poly1305_finish()
163 c = (h2 >> 42); in poly1305_finish()
171 h2 += c; in poly1305_finish()
172 c = (h2 >> 42); in poly1305_finish()
[all …]
H A Dpoly1305_donna32.h79 h2 = st->h[2]; in poly1305_blocks()
134 st->h[2] = h2; in poly1305_blocks()
162 h2 = st->h[2]; in poly1305_finish()
168 h2 += c; in poly1305_finish()
169 c = h2 >> 26; in poly1305_finish()
170 h2 = h2 & 0x3ffffff; in poly1305_finish()
189 g2 = h2 + c; in poly1305_finish()
208 h2 = (h2 & mask) | g2; in poly1305_finish()
215 h2 = ((h2 >> 12) | (h3 << 14)) & 0xffffffff; in poly1305_finish()
224 h2 = (unsigned long) f; in poly1305_finish()
[all …]
/f-stack/freebsd/contrib/libsodium/test/default/
H A Dmetamorphic.c12 unsigned char *h, *h2; in mm_generichash() local
47 assert(memcmp(h, h2, hlen) == 0); in mm_generichash()
49 sodium_free(h2); in mm_generichash()
60 unsigned char *h, *h2; in mm_onetimeauth() local
85 crypto_onetimeauth(h2, m, mlen, k); in mm_onetimeauth()
89 sodium_free(h2); in mm_onetimeauth()
100 unsigned char *h, *h2; in mm_hmacsha256() local
125 crypto_auth_hmacsha256(h2, m, mlen, k); in mm_hmacsha256()
129 sodium_free(h2); in mm_hmacsha256()
140 unsigned char *h, *h2; in mm_hmacsha512() local
[all …]
/f-stack/freebsd/contrib/ck/src/
H A Dck_ht_hash.h240 uint32_t h2 = (uint32_t)(seed >> 32); in MurmurHash64B() local
253 h2 *= m; h2 ^= k2; in MurmurHash64B()
267 case 3: h2 ^= ((const unsigned char*)data)[2] << 16; in MurmurHash64B()
269 case 2: h2 ^= ((const unsigned char*)data)[1] << 8; in MurmurHash64B()
271 case 1: h2 ^= ((const unsigned char*)data)[0]; in MurmurHash64B()
272 h2 *= m; in MurmurHash64B()
275 h1 ^= h2 >> 18; h1 *= m; in MurmurHash64B()
276 h2 ^= h1 >> 22; h2 *= m; in MurmurHash64B()
277 h1 ^= h2 >> 17; h1 *= m; in MurmurHash64B()
278 h2 ^= h1 >> 19; h2 *= m; in MurmurHash64B()
[all …]
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_core/ed25519/ref10/fe_25_5/
H A Dfe.h10 int64_t h2 = load_3(s + 7) << 5; in fe25519_frombytes() local
34 h2 += carry1; in fe25519_frombytes()
49 carry2 = (h2 + (int64_t)(1L << 25)) >> 26; in fe25519_frombytes()
51 h2 -= carry2 * ((uint64_t) 1L << 26); in fe25519_frombytes()
64 h[2] = (int32_t) h2; in fe25519_frombytes()
104 int32_t h2 = f[2]; in fe25519_reduce() local
119 q = (h2 + q) >> 26; in fe25519_reduce()
136 h2 += carry1; in fe25519_reduce()
138 carry2 = h2 >> 26; in fe25519_reduce()
140 h2 -= carry2 * ((uint32_t) 1L << 26); in fe25519_reduce()
[all …]
/f-stack/dpdk/lib/librte_member/
H A Drte_member_vbf.c167 uint32_t h2 = MEMBER_HASH_FUNC(&h1, sizeof(uint32_t), in rte_member_lookup_vbf() local
173 bit_loc = (h1 + j * h2) & ss->bit_mask; in rte_member_lookup_vbf()
200 h2[i] = MEMBER_HASH_FUNC(&h1[i], sizeof(uint32_t), in rte_member_lookup_bulk_vbf()
205 bit_loc = (h1[i] + k * h2[i]) & ss->bit_mask; in rte_member_lookup_bulk_vbf()
227 uint32_t h2 = MEMBER_HASH_FUNC(&h1, sizeof(uint32_t), in rte_member_lookup_multi_vbf() local
233 bit_loc = (h1 + j * h2) & ss->bit_mask; in rte_member_lookup_multi_vbf()
264 h2[i] = MEMBER_HASH_FUNC(&h1[i], sizeof(uint32_t), in rte_member_lookup_multi_bulk_vbf()
269 bit_loc = (h1[i] + k * h2[i]) & ss->bit_mask; in rte_member_lookup_multi_bulk_vbf()
294 uint32_t i, h1, h2; in rte_member_add_vbf() local
301 h2 = MEMBER_HASH_FUNC(&h1, sizeof(uint32_t), ss->sec_hash_seed); in rte_member_add_vbf()
[all …]
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/
H A Dfe_frombytes_sandy2x.c35 uint64_t h2 = load_3(s + 7) << 5; in fe_frombytes() local
55 carry1 = h1 >> 25; h2 += carry1; h1 &= 0x1FFFFFF; in fe_frombytes()
61 carry2 = h2 >> 26; h3 += carry2; h2 &= 0x3FFFFFF; in fe_frombytes()
68 h[2] = h2; in fe_frombytes()
/f-stack/freebsd/arm/include/
H A Dcpu.h23 uint64_t h, h2; in get_cyclecount() local
37 h2 = (uint64_t)atomic_load_acq_32(&ccnt_hi[cpu]); in get_cyclecount()
38 if (h != h2) in get_cyclecount()
40 return (h2 << 32 | l); in get_cyclecount()
H A Dbus.h267 #define __bs_copy(sz, t, h1, o1, h2, o2, cnt) \ argument
268 (*(t)->__bs_opname(c,sz))((t), h1, o1, h2, o2, cnt)
465 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \ argument
466 __bs_copy(1, t, h1, o1, h2, o2, c)
467 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \ argument
468 __bs_copy(2, t, h1, o1, h2, o2, c)
469 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \ argument
470 __bs_copy(4, t, h1, o1, h2, o2, c)
471 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \ argument
472 __bs_copy(8, t, h1, o1, h2, o2, c)
/f-stack/app/redis-5.0.5/src/
H A Dsiphash.c333 uint64_t h1, h2; in siphash_test() local
335 h2 = siphash_nocase((uint8_t*)"hello world",11,(uint8_t*)"1234567812345678"); in siphash_test()
336 if (h1 != h2) fails++; in siphash_test()
339 h2 = siphash_nocase((uint8_t*)"HELLO world",11,(uint8_t*)"1234567812345678"); in siphash_test()
340 if (h1 != h2) fails++; in siphash_test()
343 h2 = siphash_nocase((uint8_t*)"HELLO world",11,(uint8_t*)"1234567812345678"); in siphash_test()
344 if (h1 == h2) fails++; in siphash_test()
/f-stack/freebsd/contrib/libsodium/src/libsodium/include/sodium/private/
H A Ded25519_ref10_fe_51.h37 uint64_t h2 = f[2] + g[2]; in fe25519_add() local
43 h[2] = h2; in fe25519_add()
56 uint64_t h0, h1, h2, h3, h4; in fe25519_sub() local
60 h2 = g[2]; in fe25519_sub()
66 h2 += h1 >> 51; in fe25519_sub()
68 h3 += h2 >> 51; in fe25519_sub()
69 h2 &= mask; in fe25519_sub()
77 h2 = (f[2] + 0xffffffffffffeULL) - h2; in fe25519_sub()
83 h[2] = h2; in fe25519_sub()
505 h2 = ((uint64_t) a) & mask; in fe25519_scalar_product()
[all …]
H A Ded25519_ref10_fe_25_5.h45 int32_t h2 = f[2] + g[2]; in fe25519_add() local
56 h[2] = h2; in fe25519_add()
94 h[2] = h2; in fe25519_sub()
119 int32_t h2 = -f[2]; in fe25519_neg() local
130 h[2] = h2; in fe25519_neg()
559 h2 += carry1; in fe25519_mul()
616 h[2] = (int32_t) h2; in fe25519_mul()
751 h2 += carry1; in fe25519_sq()
917 h2 += h2; in fe25519_sq2()
934 h2 += carry1; in fe25519_sq2()
[all …]
/f-stack/freebsd/contrib/device-tree/src/arm/
H A Dsun8i-h2-plus-libretech-all-h3-cc.dts12 compatible = "libretech,all-h3-cc-h2-plus", "allwinner,sun8i-h2-plus";
H A Dsun8i-h2-plus-orangepi-r1.dts44 #include "sun8i-h2-plus-orangepi-zero.dts"
48 compatible = "xunlong,orangepi-r1", "allwinner,sun8i-h2-plus";
/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
13 h2 = (LOAD64_LE(s + 12) >> 6) & mask; in fe25519_frombytes()
19 h[2] = h2; in fe25519_frombytes()
/f-stack/freebsd/opencrypto/
H A Dgfmult.c89 struct gf128 h2, h3, h4; in gf128_genmultable4() local
93 h2 = gf128_mul(h, &t->tbls[0]); in gf128_genmultable4()
95 gf128_genmultable(h2, &t->tbls[1]); in gf128_genmultable4()
100 h4 = gf128_mul(h2, &t->tbls[1]); in gf128_genmultable4()
/f-stack/freebsd/crypto/openssl/
H A Dossl_sha1.c35 ll=(c)->h2; (void)HOST_l2c(ll,(s)); \
58 c->h2 = INIT_DATA_h2; in HASH_INIT()
H A Dossl_sha.h31 SHA_LONG h0, h1, h2, h3, h4; member
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/
H A Dpoly1305_sse2.c722 c = (h2 >> 42); in poly1305_blocks()
723 h2 &= 0x3ffffffffff; in poly1305_blocks()
730 h2 += c; in poly1305_blocks()
731 c = (h2 >> 42); in poly1305_blocks()
732 h2 &= 0x3ffffffffff; in poly1305_blocks()
744 g2 = h2 + c - ((uint64_t) 1 << 42); in poly1305_blocks()
750 h2 = (h2 & nc) | (g2 & c); in poly1305_blocks()
754 st->H.h[2] = h2; in poly1305_blocks()
806 uint64_t h0, h1, h2; in poly1305_finish_ext() local
832 h2 = st->H.h[2]; in poly1305_finish_ext()
[all …]
/f-stack/freebsd/arm64/include/
H A Dbus.h296 #define __bs_copy(sz, t, h1, o1, h2, o2, cnt) \ argument
297 (*(t)->__bs_opname(c,sz))((t)->bs_cookie, h1, o1, h2, o2, cnt)
473 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \ argument
474 __bs_copy(1, t, h1, o1, h2, o2, c)
475 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \ argument
476 __bs_copy(2, t, h1, o1, h2, o2, c)
477 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \ argument
478 __bs_copy(4, t, h1, o1, h2, o2, c)
479 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \ argument
480 __bs_copy(8, t, h1, o1, h2, o2, c)
/f-stack/app/redis-5.0.5/deps/lua/doc/
H A Dlua.css10 h1, h2, h3, h4 { selector
16 h2 { selector
/f-stack/freebsd/mips/include/
H A Dbus.h253 #define __bs_copy(sz, t, h1, o1, h2, o2, cnt) \ argument
254 (*(t)->__bs_opname(c,sz))((t)->bs_cookie, h1, o1, h2, o2, cnt)
429 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \ argument
430 __bs_copy(1, t, h1, o1, h2, o2, c)
431 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \ argument
432 __bs_copy(2, t, h1, o1, h2, o2, c)
433 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \ argument
434 __bs_copy(4, t, h1, o1, h2, o2, c)
435 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \ argument
436 __bs_copy(8, t, h1, o1, h2, o2, c)
/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
430 @ d3 = h3*r0 + h2*r1 + h1*r2 + h0*r3 + h4*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
781 @ d3 = h3*r0 + h2*r1 + h1*r2 + h0*r3 + h4*5*r4
894 vadd.i64 q7,q7,q4 @ h1 -> h2
907 vadd.i32 d16,d16,d8 @ h2 -> h3
1059 vadd.i64 q7,q7,q4 @ h1 -> h2
[all …]
/f-stack/freebsd/x86/include/
H A Dbus.h1085 #define bus_space_copy_region_stream_1(t, h1, o1, h2, o2, c) \ argument
1086 bus_space_copy_region_1((t), (h1), (o1), (h2), (o2), (c))
1087 #define bus_space_copy_region_stream_2(t, h1, o1, h2, o2, c) \ argument
1088 bus_space_copy_region_2((t), (h1), (o1), (h2), (o2), (c))
1089 #define bus_space_copy_region_stream_4(t, h1, o1, h2, o2, c) \ argument
1090 bus_space_copy_region_4((t), (h1), (o1), (h2), (o2), (c))

12