Home
last modified time | relevance | path

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

/linux-6.12.1/lib/crypto/
Dpoly1305-donna64.c40 u64 h0, h1, h2; in poly1305_core_blocks() local
53 h0 = state->h64[0]; in poly1305_core_blocks()
67 h0 += t0 & 0xfffffffffffULL; in poly1305_core_blocks()
72 d0 = (u128)h0 * r0; in poly1305_core_blocks()
77 d1 = (u128)h0 * r1; in poly1305_core_blocks()
82 d2 = (u128)h0 * r2; in poly1305_core_blocks()
90 h0 = (u64)d0 & 0xfffffffffffULL; in poly1305_core_blocks()
97 h0 += c * 5; in poly1305_core_blocks()
98 c = h0 >> 44; in poly1305_core_blocks()
99 h0 = h0 & 0xfffffffffffULL; in poly1305_core_blocks()
[all …]
Dpoly1305-donna32.c38 u32 h0, h1, h2, h3, h4; in poly1305_core_blocks() local
58 h0 = state->h[0]; in poly1305_core_blocks()
66 h0 += (get_unaligned_le32(&input[0])) & 0x3ffffff; in poly1305_core_blocks()
73 d0 = ((u64)h0 * r0) + ((u64)h1 * s4) + in poly1305_core_blocks()
76 d1 = ((u64)h0 * r1) + ((u64)h1 * r0) + in poly1305_core_blocks()
79 d2 = ((u64)h0 * r2) + ((u64)h1 * r1) + in poly1305_core_blocks()
82 d3 = ((u64)h0 * r3) + ((u64)h1 * r2) + in poly1305_core_blocks()
85 d4 = ((u64)h0 * r4) + ((u64)h1 * r3) + in poly1305_core_blocks()
91 h0 = (u32)d0 & 0x3ffffff; in poly1305_core_blocks()
104 h0 += c * 5; in poly1305_core_blocks()
[all …]
/linux-6.12.1/arch/arm64/crypto/
Dpoly1305-armv8.pl47 my ($h0,$h1,$h2,$r0,$r1,$s1,$t0,$t1,$d0,$d1,$d2) = map("x$_",(4..14));
118 ldp $h0,$h1,[$ctx] // load hash value
123 lsr $d0,$h0,#32
124 mov w#$d1,w#$h0
129 mov w#$d0,w#$h0
130 lsr $d1,$h0,#32
147 csel $h0,$h0,$d0,eq // choose between radixes
158 adds $h0,$h0,$t0 // accumulate input
161 mul $d0,$h0,$r0 // h0*r0
163 umulh $d1,$h0,$r0
[all …]
/linux-6.12.1/arch/arm/crypto/
Dpoly1305-armv4.pl178 my ($h0,$h1,$h2,$h3,$h4,$r0,$r1,$r2,$r3)=map("r$_",(4..12));
195 ldmia $ctx,{$h0-$r3} @ load context
201 ldmia $ctx!,{$h0-$h4} @ load hash value
205 adds $r0,$h0,$h1,lsl#26 @ base 2^26 -> base 2^32
218 movne $h0,$r0 @ choose between radixes
251 adds $h0,$h0,r3 @ accumulate input
290 adds $h0,$h0,r0 @ accumulate input
302 umull r0,r1,$h0,$r0
310 umlal r2,r3,$h0,$r1
311 str r0,[sp,#0] @ future $h0
[all …]
/linux-6.12.1/tools/testing/selftests/net/
Dfib_nexthop_multiprefix.sh95 setup_ns h0 r1 h1 h2 h3
96 h[0]=$h0
174 run_cmd ip netns exec ${h0} ping -s ${ping_sz} -c5 -w5 ${dst}
179 ip -netns ${h0} ro get ${dst}
185 ip -netns ${h0} ro get ${dst} | \
203 run_cmd ip netns exec ${h0} ${ping6} -s ${ping_sz} -c5 -w5 ${dst}
208 ip -netns ${h0} -6 ro get ${dst}
214 ip -netns ${h0} -6 ro get ${dst} | \
243 run_cmd taskset -c ${c} ip netns exec ${h0} ping -c1 -w1 172.16.10${i}.1
246 run_cmd taskset -c ${c} ip netns exec ${h0} ${ping6} -c1 -w1 2001:db8:10${i}::1
[all …]
/linux-6.12.1/lib/
Dtest_hash.c61 u32 h0; member
74 params->hash_or[1][0] |= params->h2 = __hash_32_generic(params->h0); in test_int__hash_32()
78 params->h0, params->h1, params->h2); in test_int__hash_32()
116 hash_or[0][0] |= params.h1 = __hash_32(params.h0); in test_int_hash()
126 hash_or[0][k] |= params.h1 = hash_32(params.h0, k); in test_int_hash()
129 params.h0, k, params.h1, m); in test_int_hash()
157 u32 h0 = full_name_hash(buf+i, buf+i, j-i); in test_string_or() local
159 string_or |= h0; in test_string_or()
184 u32 h0 = full_name_hash(buf+i, buf+i, j-i); in test_hash_or() local
191 KUNIT_EXPECT_EQ_MSG(test, hashlen_hash(hashlen), h0, in test_hash_or()
[all …]
/linux-6.12.1/arch/mips/crypto/
Dpoly1305-mips.pl226 my ($h0,$h1,$h2,$r0,$r1,$rs1,$d0,$d1,$d2) =
277 ld $h0,0($ctx) # load hash value
364 daddu $d0,$h0,$in0 # accumulate input
366 sltu $tmp0,$d0,$h0
377 mflo ($h0,$r0,$d0)
389 daddu $h0,$tmp0
391 sltu $tmp0,$h0,$tmp0
418 sd $h0,0($ctx) # store hash value
733 my ($h0,$h1,$h2,$h3,$h4, $r0,$r1,$r2,$r3, $rs1,$rs2,$rs3) =
777 lw $h0,0($ctx) # load hash value
[all …]
/linux-6.12.1/arch/powerpc/crypto/
Dpoly1305-p10le_64.S632 # h1 = (h0 + m1) * r^2, h2 = (h0 + m2) * r^2
633 # h3 = (h1 + m3) * r^2, h4 = (h2 + m4) * r^2 --> (h0 + m1) r*4 + (h3 + m3) r^2, (h0 + m2) r^4 + (h…
870 # v6 = (h0, h1), v8 = h2
877 # d0 = h0 * r0 + h1 * s1
878 vmsumudm 7, 6, 0, 9 # h0 * r0, h1 * s1
880 # d1 = h0 * r1 + h1 * r0 + h2 * s1
881 vmsumudm 11, 6, 1, 9 # h0 * r1, h1 * r0
900 mfvsrd 20, 32+7 # h0.h
908 addc 27, 27, 23 # h0
917 # d0 = h0 * r0 + h1 * s1
[all …]
Dcurve25519-ppc64le_asm.S558 and 5, 5, 12 # h0
/linux-6.12.1/arch/x86/crypto/
Dpoly1305-x86_64-cryptogams.pl180 my ($h0,$h1,$h2)=("%r14","%rbx","%r10");
186 mulq $h0 # h0*r1
191 mulq $h0 # h0*r0
192 mov %rax,$h0 # future $h0
203 add %rax,$h0
221 add %rax,$h0
329 mov 0($ctx),$h0 # load hash value
341 add 0($inp),$h0 # accumulate input
357 mov $h0,0($ctx) # store hash value
439 mov $r0,$h0
[all …]
/linux-6.12.1/fs/reiserfs/
Dhashes.c30 b0 = h0; \
40 h0 += b0; \
48 u32 h0 = k[0], h1 = k[1]; in keyed_hash() local
121 return h0 ^ h1; in keyed_hash()
/linux-6.12.1/tools/perf/util/arm-spe-decoder/
Darm-spe-pkt-decoder.h60 #define SPE_HDR_EXTENDED_INDEX(h0, h1) (((h0) & GENMASK_ULL(1, 0)) << 3 | \ argument
/linux-6.12.1/drivers/mtd/
Dnftlmount.c568 struct nftl_uci0 h0; in NFTL_mount() local
597 &retlen, (char *)&h0) < 0 || in NFTL_mount()
607 logical_block = le16_to_cpu ((h0.VirtUnitNum | h0.SpareVirtUnitNum)); in NFTL_mount()
608 rep_block = le16_to_cpu ((h0.ReplUnitNum | h0.SpareReplUnitNum)); in NFTL_mount()
Dinftlmount.c532 struct inftl_unithead1 h0; in INFTL_mount() local
583 8, &retlen, (char *)&h0) < 0 || in INFTL_mount()
592 logical_block = le16_to_cpu(h0.virtualUnitNo); in INFTL_mount()
593 prev_block = le16_to_cpu(h0.prevUnitNo); in INFTL_mount()
595 ANACtable[block] = h0.ANAC; in INFTL_mount()
/linux-6.12.1/drivers/gpu/drm/radeon/
Dr600_cs.c1407 unsigned w0, unsigned h0, unsigned d0, unsigned nsamples, unsigned format, in r600_texture_size() argument
1421 h0 = r600_mip_minify(h0, 0); in r600_texture_size()
1429 height = r600_mip_minify(h0, i); in r600_texture_size()
1477 u32 dim, nfaces, llevel, blevel, w0, h0, d0; in r600_check_texture_resource() local
1509 h0 = G_038004_TEX_HEIGHT(word1) + 1; in r600_check_texture_resource()
1590 r600_texture_size(nfaces, blevel, llevel, w0, h0, d0, array_check.nsamples, format, in r600_check_texture_resource()
1596 w0, h0, pitch_align, height_align, in r600_check_texture_resource()
/linux-6.12.1/sound/pci/asihpi/
Dhpi_internal.h1161 struct hpi_message_header h0; member
1167 struct hpi_response_header h0; member
/linux-6.12.1/net/ipv6/
Dsit.c102 unsigned int h0 = HASH(remote); in ipip6_tunnel_lookup() local
108 for_each_ip_tunnel_rcu(t, sitn->tunnels_r_l[h0 ^ h1]) { in ipip6_tunnel_lookup()
116 for_each_ip_tunnel_rcu(t, sitn->tunnels_r[h0]) { in ipip6_tunnel_lookup()
Dip6_gre.c121 unsigned int h0 = HASH_ADDR(remote); in ip6gre_tunnel_lookup() local
132 for_each_ip_tunnel_rcu(t, ign->tunnels_r_l[h0 ^ h1]) { in ip6gre_tunnel_lookup()
157 for_each_ip_tunnel_rcu(t, ign->tunnels_r[h0 ^ h1]) { in ip6gre_tunnel_lookup()
/linux-6.12.1/net/xfrm/
Dxfrm_policy.c569 unsigned int h0 = 0; in xfrm_dst_hash_transfer() local
583 h0 = h; in xfrm_dst_hash_transfer()
585 if (h != h0) in xfrm_dst_hash_transfer()