Home
last modified time | relevance | path

Searched refs:in0 (Results 1 – 25 of 40) sorted by relevance

12

/linux-6.15/arch/powerpc/crypto/
H A Daesp10-ppc.pl210 vxor $in0,$in0,$tmp
212 vxor $in0,$in0,$tmp
214 vxor $in0,$in0,$tmp
216 vxor $in0,$in0,$key
230 vxor $in0,$in0,$tmp
232 vxor $in0,$in0,$tmp
234 vxor $in0,$in0,$tmp
236 vxor $in0,$in0,$key
247 vxor $in0,$in0,$tmp
249 vxor $in0,$in0,$tmp
[all …]
H A Daesp8-ppc.pl808 le?vperm $in0,$in0,$in0,$inpperm
944 le?vperm $in0,$in0,$in0,$inpperm
1633 le?vperm $in0,$in0,$in0,$inpperm
1694 le?vperm $in0,$in0,$in0,$inpperm
2936 le?vperm $in0,$in0,$in0,$leperm
2939 vperm $in0,$in0,$in0,$inpperm
2959 le?vperm $in0,$in0,$in0,$leperm
2960 vperm $in0,$in0,$in0,$inpperm
3106 le?vperm $in0,$in0,$in0,$leperm
3115 vperm $in0,$in0,$in0,$inpperm
[all …]
/linux-6.15/arch/mips/crypto/
H A Dpoly1305-mips.pl141 dsllv $in0,$in0,$tmp0
146 dsrlv $in0,$in0,$tmp0
151 or $in0,$in0,$tmp3
164 dshd $in0,$in0
298 dsllv $in0,$in0,$shr
308 or $in0,$in0,$tmp3
322 dshd $in0,$in0
620 or $in0,$in0,$tmp3
633 or $in0,$in0,$tmp3
660 rotr $in0,$in0,16
[all …]
/linux-6.15/lib/
H A Dtest_memcat_p.c27 in0 = kcalloc(INPUT_MAX, sizeof(*in0), GFP_KERNEL); in test_memcat_p_init()
28 if (!in0) in test_memcat_p_init()
36 in0[i] = kmalloc(sizeof(**in0), GFP_KERNEL); in test_memcat_p_init()
37 if (!in0[i]) in test_memcat_p_init()
42 kfree(in0[i]); in test_memcat_p_init()
48 in0[i]->num = r; in test_memcat_p_init()
50 in0[i]->magic = MAGIC; in test_memcat_p_init()
54 in0[i] = in1[i] = NULL; in test_memcat_p_init()
56 out = memcat_p(in0, in1); in test_memcat_p_init()
98 kfree(in0[i]); in test_memcat_p_init()
[all …]
/linux-6.15/arch/arm64/crypto/
H A Daes-neon.S129 tbl \in0\().16b, {v16.16b-v19.16b}, \in0\().16b
184 eor \in0\().16b, \in0\().16b, v8.16b
188 eor \in0\().16b, \in0\().16b, v8.16b
193 rev32 v10.8h, \in0\().8h
197 eor \in0\().16b, \in0\().16b, v10.16b
199 tbl \in0\().16b, {\in0\().16b}, v14.16b
201 eor \in0\().16b, \in0\().16b, v10.16b
209 .La\@: eor \in0\().16b, \in0\().16b, v15.16b /* ^round key */
214 tbl \in0\().16b, {\in0\().16b}, v13.16b /* ShiftRows */
222 mix_columns_2x \in0, \in1, \enc
[all …]
H A Daes-cipher-core.S20 .macro __pair1, sz, op, reg0, reg1, in0, in1e, in1d, shift
22 ubfiz \reg0, \in0, #2, #8
25 ubfx \reg0, \in0, #\shift, #8
49 .macro __pair0, sz, op, reg0, reg1, in0, in1e, in1d, shift
50 ubfx \reg0, \in0, #\shift, #8
56 .macro __hround, out0, out1, in0, in1, in2, in3, t0, t1, enc, sz, op
59 __pair\enc \sz, \op, w12, w13, \in0, \in1, \in3, 0
60 __pair\enc \sz, \op, w14, w15, \in1, \in2, \in0, 8
62 __pair\enc \sz, \op, \t0, \t1, \in3, \in0, \in2, 24
74 .macro fround, out0, out1, out2, out3, in0, in1, in2, in3, sz=2, op
[all …]
H A Dsha512-ce-core.S83 .macro dround, i0, i1, i2, i3, i4, rc0, rc1, in0, in1, in2, in3, in4
87 add v5.2d, v\rc0\().2d, v\in0\().2d
94 sha512su0 v\in0\().2d, v\in1\().2d
98 sha512su1 v\in0\().2d, v\in2\().2d, v5.2d
/linux-6.15/arch/arm/crypto/
H A Daes-cipher-core.S42 .macro __hround, out0, out1, in0, in1, in2, in3, t3, t4, enc, sz, op, oldcpsr
43 __select \out0, \in0, 0
53 __select t1, \in0, 1
65 __select \t4, \in0, 3
92 .macro fround, out0, out1, out2, out3, in0, in1, in2, in3, sz=2, op, oldcpsr
93 __hround \out0, \out1, \in0, \in1, \in2, \in3, \out2, \out3, 1, \sz, \op
94 __hround \out2, \out3, \in2, \in3, \in0, \in1, \in1, \in2, 1, \sz, \op, \oldcpsr
97 .macro iround, out0, out1, out2, out3, in0, in1, in2, in3, sz=2, op, oldcpsr
98 __hround \out0, \out1, \in0, \in3, \in2, \in1, \out2, \out3, 0, \sz, \op
99 __hround \out2, \out3, \in2, \in1, \in0, \in3, \in1, \in0, 0, \sz, \op, \oldcpsr
H A Dghash-ce-core.S491 .macro enc_1x, in0 argument
493 veor \in0, \in0, e0
494 vst1.8 {\in0}, [r4]!
497 .macro dec_1x, in0 argument
499 veor e0, e0, \in0
503 .macro enc_4x, in0, in1, in2, in3
506 veor \in0, \in0, e0
511 vst1.8 {\in0-\in1}, [r4]!
515 .macro dec_4x, in0, in1, in2, in3
518 veor e0, e0, \in0
/linux-6.15/Documentation/devicetree/bindings/clock/
H A Dcanaan,k210-clk.yaml43 in0: oscillator {
54 clocks = <&in0>;
/linux-6.15/Documentation/devicetree/bindings/mfd/
H A Dcanaan,k210-sysctl.yaml77 in0: oscllator {
94 clocks = <&in0>;
/linux-6.15/Documentation/hwmon/
H A Dw83795.rst40 13 VSEN1 (VCORE1) 10h in0
99 10 VSEN1 (VCORE1) 10h in0
H A Dpowr1220.rst37 in0 VMON1
H A Dltc4282.rst42 attributes are read-only. Note that in0 and in1 are mutually exclusive. Enabling
51 in0_reset_history Write 1 to reset in0 history.
H A Ddme1737.rst94 in0: +5VTR (+5V standby) 0V - 6.64V
104 in0: +2.5V 0V - 3.32V
114 in0: +5VTR (+5V standby) 0V - 6.64V
124 in0: +2.5 0V - 3.32V
H A Dasb100.rst48 - 0x0001 => in0 (?)
H A Dw83781d.rst155 0x000001 in0
370 - in0=r(0x20)*0.016
379 - in0=r(0x20)*0.016
388 - in0=r(0x20)*0.016
397 - in0=r(0x20)*0.016
H A Df71805f.rst69 need external resistors. An exception is in0, which is used to monitor
83 in0 VCC VCC3.3V int. int. 2.00 1.65 V
H A Dlm87.rst83 - in0+in5 (default) or temp3
H A Dgl518sm.rst31 For the revision 0x00 chip, the in0, in1, and in2 values (+5V, +3V,
/linux-6.15/drivers/acpi/riscv/
H A Dirq.c31 static int irqchip_cmp_func(const void *in0, const void *in1) in irqchip_cmp_func() argument
33 struct acpi_probe_entry *elem0 = (struct acpi_probe_entry *)in0; in irqchip_cmp_func()
/linux-6.15/tools/testing/selftests/drivers/net/mlxsw/
H A Dqos_pfc.sh386 local in0=$(ethtool_stats_get $swp1 rx_octets_prio_1)
396 local din=$((in1 - in0))
/linux-6.15/Documentation/devicetree/bindings/hwmon/
H A Dti,lm87.yaml31 are configured as voltage input pins in0 and in5.
H A Dadt7475.yaml123 adi,bypass-attenuator-in0 = <1>;
/linux-6.15/Documentation/devicetree/bindings/iio/adc/
H A Dst,stm32-adc.yaml295 - 16 channels, numbered from 0 to 15 (for in0..in15) on stm32f4
296 - 19 channels, numbered from 0 to 18 (for in0..in18) on stm32mp13.
297 - 20 channels, numbered from 0 to 19 (for in0..in19) on stm32h7 and

12