Home
last modified time | relevance | path

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

123

/linux-6.1.9/arch/mips/crypto/
Dpoly1305-mips.pl76 my ($in0,$in1,$tmp0,$tmp1,$tmp2,$tmp3,$tmp4) = ($a4,$a5,$a6,$a7,$at,$t0,$t1);
134 ld $in0,0($inp)
141 dsllv $in0,$in0,$tmp0
146 dsrlv $in0,$in0,$tmp0
151 or $in0,$in0,$tmp3
155 ldl $in0,0+MSB($inp)
157 ldr $in0,0+LSB($inp)
162 dsbh $in0,$in0 # byte swap
164 dshd $in0,$in0
171 and $tmp1,$in0,$tmp0 # byte swap
[all …]
/linux-6.1.9/arch/ia64/kernel/
Drelocate_kernel.S130 mov r30=in0 // in0 is page_list
134 ld8 r30=[in0], 8;;
141 (p6) and in0=r30, r16
192 add loc1=4*8, in0 // save r4 and r5 first
202 add loc1=32*8, in0
205 st8 [in0]=r0, 8 // r0
209 st8 [in0]=r1, 8 // r1
213 st8 [in0]=r2, 8 // r2
217 st8 [in0]=r3, 24 // r3
221 st8 [in0]=r6, 8 // r6
[all …]
Dpal.S37 st8 [r2]=in0
62 mov r28 = in0
106 mov r28 = in0 // Index MUST be copied to r28
107 mov out0 = in0 // AND in0 of PAL function
154 mov r28 = in0 // copy procedure index
214 mov r28 = in0 // copy procedure index
235 mov out0 = in0 // first argument
272 add r2=16,in0
274 stf.spill [in0] = f10,32
277 stf.spill [in0] = f12,32
[all …]
Dhead.S426 add r19=IA64_NUM_DBG_REGS*8,in0
436 st8.nta [in0]=r16,8
446 lfetch.nta [in0]
448 add r19=IA64_NUM_DBG_REGS*8,in0
452 1: ld8.nta r16=[in0],8
470 adds loc0=96*16-16,in0
471 adds loc1=96*16-16-128,in0
487 adds loc2=96*16-32,in0
491 adds loc3=96*16-32-128,in0
507 adds loc0=96*16-48,in0
[all …]
Defi_stub.S49 ld8 r2=[in0],8 // load EFI function's entry point
57 ld8 gp=[in0] // load EFI function's global pointer
Desi_stub.S52 ld8 r2=[in0],8 // load ESI function's entry point
75 ld8 gp=[in0] // load ESI function's global pointer
Dentry.S68 mov out0=in0 // filename
118 mov out0=in0
146 mov out0=in0
175 adds r21=IA64_TASK_THREAD_KSP_OFFSET,in0
176 dep r20=0,in0,61,3 // physical address of "next"
180 cmp.eq p7,p6=r25,in0
190 MOV_TO_KR(CURRENT, in0, r8, r9) // update "current" application register
192 mov r13=in0 // set "current" pointer
210 MOV_TO_IFA(in0, r8) // VA of next task...
1023 shladd in0=loc1,3,r17
[all …]
/linux-6.1.9/lib/
Dtest_memcat_p.c24 struct test_struct **in0, **in1, **out, **p; in test_memcat_p_init() local
27 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()
[all …]
/linux-6.1.9/arch/arm64/crypto/
Daes-neon.S127 .macro sub_bytes_4x, in0, in1, in2, in3
128 sub v8.16b, \in0\().16b, v15.16b
129 tbl \in0\().16b, {v16.16b-v19.16b}, \in0\().16b
136 tbx \in0\().16b, {v20.16b-v23.16b}, v8.16b
143 tbx \in0\().16b, {v24.16b-v27.16b}, v8.16b
151 tbx \in0\().16b, {v28.16b-v31.16b}, v8.16b
158 .macro mul_by_x_2x, out0, out1, in0, in1, tmp0, tmp1, const
159 sshr \tmp0\().16b, \in0\().16b, #7
160 shl \out0\().16b, \in0\().16b, #1
169 .macro mul_by_x2_2x, out0, out1, in0, in1, tmp0, tmp1, const
[all …]
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 …]
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.1.9/arch/ia64/lib/
Dxor.S24 shr in0 = in0, 3
26 adds in0 = -1, in0
30 mov ar.lc = in0
62 shr in0 = in0, 3
64 adds in0 = -1, in0
69 mov ar.lc = in0
103 shr in0 = in0, 3
105 adds in0 = -1, in0
110 mov ar.lc = in0
147 shr in0 = in0, 3
[all …]
Dip_fast_csum.S28 #define in0 r32 macro
39 and r14=3,in0 // is it aligned on 4-byte?
40 add r15=4,in0 // second source pointer
44 (p7) ld4 r20=[in0],8
48 ld4 r22=[in0],8
51 ld4 r24=[in0]
88 mov out0=in0
100 ld4 r20=[in0],4
104 ld4 r22=[in0],4
108 ld4 r24=[in0],4
[all …]
Dclear_page.S43 mov dst_fetch = in0
44 adds dst1 = 16, in0
45 adds dst2 = 32, in0
48 adds dst3 = 48, in0 // executing this multiple times is harmless
53 adds dst4 = 64, in0
Didiv32.S47 EXTEND in0 = in0 // in0 = a
50 setf.sig f8 = in0
73 setf.sig f7 = in0
Dcopy_page.S63 adds tgt2=8,in0
66 mov tgt1=in0
67 add tgtf=512,in0
68 add tgt_last = tgt_last, in0
Dflush.S36 shr.u r23=in0,r20 // start / (stride size)
85 add r22=in1,in0
90 shr.u r23=in0,r20 // start / (stride size)
Dcopy_page_mck.S119 mov dst_pre_mem = in0
123 add dst_pre_l2 = 8*8, in0
126 add dst0 = 8, in0 // first t1 dst
127 add dst1 = 3*8, in0 // first t3 dst
Dstrlen.S90 extr.u tmp=in0,0,3 // tmp=least significant 3 bits
91 mov orig=in0 // keep trackof initial byte address
92 dep src=0,in0,0,3 // src=8byte-aligned in0 address
Didiv64.S44 setf.sig f8 = in0
69 setf.sig f8 = in0 // f8 = a
Dmemcpy_mck.S71 #define in0 r32 macro
76 and r28=0x7,in0
79 mov retval=in0
87 and r28=0x7,in0
90 mov saved_in0=in0 // save dest pointer
102 add dst0=0,in0
103 add dst1=1,in0 // dest odd index
126 add dst_pre_mem=0,in0 // prefetch dest pointer
496 add dst0=in0,r30 // setup arguments
/linux-6.1.9/drivers/crypto/vmx/
Daesp8-ppc.pl121 my ($zero,$in0,$in1,$key,$rcon,$mask,$tmp)=map("v$_",(0..6));
172 lvx $in0,0,$inp
183 vperm $in0,$in0,$in1,$key # align [and byte swap in LE]
201 vperm $key,$in0,$in0,$mask # rotate-n-splat
202 vsldoi $tmp,$zero,$in0,12 # >>32
203 vperm $outtail,$in0,$in0,$outperm # rotate
210 vxor $in0,$in0,$tmp
212 vxor $in0,$in0,$tmp
214 vxor $in0,$in0,$tmp
216 vxor $in0,$in0,$key
[all …]
/linux-6.1.9/arch/arm/crypto/
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
/linux-6.1.9/Documentation/devicetree/bindings/clock/
Dcanaan,k210-clk.yaml43 in0: oscillator {
54 clocks = <&in0>;
/linux-6.1.9/Documentation/devicetree/bindings/mfd/
Dcanaan,k210-sysctl.yaml77 in0: oscllator {
94 clocks = <&in0>;

123