Home
last modified time | relevance | path

Searched refs:s0 (Results 1 – 25 of 240) sorted by relevance

12345678910

/openbmc/qemu/tests/tcg/i386/
H A Dtest-i386.h17 stringify(OP) size, s0, s1, res, iflags, flags & CC_MASK);
28 stringify(OP) size, s0, res, iflags, flags & CC_MASK);
32 void exec_opq(long s0, long s1, long iflags) in exec_opq() argument
35 res = s0; in exec_opq()
41 void exec_opl(long s0, long s1, long iflags) in exec_opl() argument
44 res = s0; in exec_opl()
49 void exec_opw(long s0, long s1, long iflags) in exec_opw() argument
52 res = s0; in exec_opw()
57 void exec_opb(long s0, long s1, long iflags) in exec_opb() argument
60 res = s0; in exec_opb()
[all …]
H A Dtest-i386-shift.h31 void exec_opq(long s2, long s0, long s1, long iflags) in exec_opq() argument
34 res = s0; in exec_opq()
41 stringify(OP) "q", s0, s1, res, iflags, flags & CC_MASK); in exec_opq()
45 void exec_opl(long s2, long s0, long s1, long iflags) in exec_opl() argument
48 res = s0; in exec_opl()
55 stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK); in exec_opl()
58 void exec_opw(long s2, long s0, long s1, long iflags) in exec_opw() argument
61 res = s0; in exec_opw()
68 stringify(OP) "w", s0, s1, res, iflags, flags & CC_MASK); in exec_opw()
82 void exec_opq(long s2, long s0, long s1, long iflags) in exec_opq() argument
[all …]
H A Dtest-i386-pcmpistri.c11 union u s0 = { .uc = { 0 } }; variable
20 if (_mm_cmpistri(s0.x, s0.x, 0x4c) != 15) { in main()
/openbmc/linux/arch/loongarch/kernel/
H A Drelocate_kernel.S25 move s0, a4
31 beqz s0, done
34 PTR_L s1, s0, 0
35 PTR_ADDI s0, s0, SZREG
49 and s0, s1, t0
97 iocsrrd.w s0, t1 /* check PC as an indicator */
98 beqz s0, 1b
99 iocsrrd.d s0, t1 /* get PC via mailbox */
102 or s0, s0, t0 /* s0 = TO_CACHE(s0) */
103 jr s0 /* jump to initial PC */
H A Dmcount.S21 PTR_S s0, sp, MCOUNT_S0_OFFSET
23 move s0, a0
27 move a0, s0
29 PTR_L s0, sp, MCOUNT_S0_OFFSET
42 move a1, s0 /* arg1: parent's return address */
74 move a2, s0 /* arg2: Callsite parent ra */
/openbmc/qemu/crypto/
H A Daes.c1451 u32 s0, s1, s2, s3, t0, t1, t2, t3; in AES_encrypt() local
1463 s0 = GETU32(in ) ^ rk[0]; in AES_encrypt()
1469 …t0 = AES_Te0[s0 >> 24] ^ AES_Te1[(s1 >> 16) & 0xff] ^ AES_Te2[(s2 >> 8) & 0xff] ^ AES_Te3[s3 & 0x… in AES_encrypt()
1470 …[s1 >> 24] ^ AES_Te1[(s2 >> 16) & 0xff] ^ AES_Te2[(s3 >> 8) & 0xff] ^ AES_Te3[s0 & 0xff] ^ rk[ 5]; in AES_encrypt()
1471 …t2 = AES_Te0[s2 >> 24] ^ AES_Te1[(s3 >> 16) & 0xff] ^ AES_Te2[(s0 >> 8) & 0xff] ^ AES_Te3[s1 & 0x… in AES_encrypt()
1472 …t3 = AES_Te0[s3 >> 24] ^ AES_Te1[(s0 >> 16) & 0xff] ^ AES_Te2[(s1 >> 8) & 0xff] ^ AES_Te3[s2 & 0x… in AES_encrypt()
1474s0 = AES_Te0[t0 >> 24] ^ AES_Te1[(t1 >> 16) & 0xff] ^ AES_Te2[(t2 >> 8) & 0xff] ^ AES_Te3[t3 & 0x… in AES_encrypt()
1479 …t0 = AES_Te0[s0 >> 24] ^ AES_Te1[(s1 >> 16) & 0xff] ^ AES_Te2[(s2 >> 8) & 0xff] ^ AES_Te3[s3 & 0x… in AES_encrypt()
1480 …[s1 >> 24] ^ AES_Te1[(s2 >> 16) & 0xff] ^ AES_Te2[(s3 >> 8) & 0xff] ^ AES_Te3[s0 & 0xff] ^ rk[13]; in AES_encrypt()
1481 …t2 = AES_Te0[s2 >> 24] ^ AES_Te1[(s3 >> 16) & 0xff] ^ AES_Te2[(s0 >> 8) & 0xff] ^ AES_Te3[s1 & 0x… in AES_encrypt()
[all …]
/openbmc/u-boot/drivers/mtd/nand/raw/
H A Dnand_ecc.c136 uint8_t s0, s1, s2; in nand_correct_data() local
139 s0 = calc_ecc[1] ^ read_ecc[1]; in nand_correct_data()
141 if ((s0 | s1 | s2) == 0) in nand_correct_data()
145 if( ((s0 ^ (s0 >> 1)) & 0x55) == 0x55 && in nand_correct_data()
156 byteoffs |= (s0 >> 4) & 0x08; in nand_correct_data()
157 byteoffs |= (s0 >> 3) & 0x04; in nand_correct_data()
158 byteoffs |= (s0 >> 2) & 0x02; in nand_correct_data()
159 byteoffs |= (s0 >> 1) & 0x01; in nand_correct_data()
170 if(countbits(s0 | ((uint32_t)s1 << 8) | ((uint32_t)s2 <<16)) == 1) in nand_correct_data()
/openbmc/qemu/common-user/host/mips/
H A Dsafe-syscall.inc.S48 REG_S s0, OFS_S0(sp)
49 .cfi_rel_offset s0, OFS_S0
63 move s0, a0 /* signal_pending pointer */
90 move s0, a0 /* signal_pending pointer */
110 lw t1, 0(s0)
116 REG_L s0, OFS_S0(sp)
120 .cfi_restore s0
126 2: REG_L s0, OFS_S0(sp)
129 .cfi_restore s0
/openbmc/linux/arch/riscv/kernel/
H A Dmcount.S19 REG_S s0, 0*SZREG(sp)
21 addi s0, sp, 16
30 REG_S s0, 2*SZREG(sp)
34 addi s0, sp, 4*SZREG
39 REG_L s0, 0*SZREG(sp)
45 REG_L s0, 2*SZREG(sp)
106 addi a0, s0, -SZREG
109 REG_L a2, -2*SZREG(s0)
122 REG_L a1, -SZREG(s0)
H A Dentry.S60 REG_L s0, TASK_TI_USER_SP(tp)
66 REG_S s0, PT_SP(sp)
117 REG_L s0, PT_STATUS(sp)
121 and s0, s0, t0
123 andi s0, s0, SR_SPP
125 bnez s0, 1f
128 addi s0, sp, PT_SIZE_ON_STACK
129 REG_S s0, TASK_TI_KERNEL_SP(tp)
196 REG_L s0, TASK_TI_KERNEL_SP(tp)
202 REG_S s0, PT_SP(sp)
[all …]
H A Dkexec_relocate.S29 mv s0, a0
63 REG_L t0, 0(s0) /* t0 = *image->entry */
64 addi s0, s0, RISCV_SZPTR /* image->entry++ */
76 andi s0, t0, ~0x2
119 mv s0, zero
163 mv s0, a1
174 mv a2, s0
183 mv s0, zero
/openbmc/linux/drivers/soc/bcm/brcmstb/pm/
H A Ds2-mips.S24 sw s0, 4(sp)
44 lw s0, 0(t0)
79 sw zero, AON_CTRL_PM_CTRL(s0)
80 lw zero, AON_CTRL_PM_CTRL(s0)
81 sw t0, AON_CTRL_PM_CTRL(s0)
82 lw t0, AON_CTRL_PM_CTRL(s0)
134 sw t1, AON_CTRL_HOST_MISC_CMDS(s0)
135 lw t1, AON_CTRL_HOST_MISC_CMDS(s0)
137 sw zero, AON_CTRL_PM_CTRL(s0)
138 lw zero, AON_CTRL_PM_CTRL(s0)
[all …]
/openbmc/linux/arch/arm/crypto/
H A Dsha2-ce-core.S32 .macro add_only, ev, s0 argument
34 .ifnb \s0
39 .ifnb \s0
40 vadd.u32 ta\ev, q\s0, k\ev
44 .macro add_update, ev, s0, s1, s2, s3
45 sha256su0.32 q\s0, q\s1
47 sha256su1.32 q\s0, q\s2, q\s3
H A Dsha1-ce-core.S36 .macro add_only, op, ev, rc, s0, dg1
37 .ifnb \s0
38 vadd.u32 tb\ev, q\s0, \rc
48 .macro add_update, op, ev, rc, s0, s1, s2, s3, dg1
49 sha1su0.32 q\s0, q\s1, q\s2
51 sha1su1.32 q\s0, q\s3
/openbmc/linux/arch/mips/kernel/
H A Drelocate_kernel.S22 PTR_L s0, kexec_indirection_page
26 PTR_L s2, (s0)
27 PTR_ADDIU s0, s0, SZREG
45 and s0, s2, ~0x2
127 1: LONG_L s0, (t0)
128 bne s0, zero,1b
/openbmc/linux/drivers/thermal/
H A Dk3_bandgap.c93 static unsigned int vtm_get_best_value(unsigned int s0, unsigned int s1, in vtm_get_best_value() argument
96 int d01 = abs(s0 - s1); in vtm_get_best_value()
97 int d02 = abs(s0 - s2); in vtm_get_best_value()
101 return (s0 + s1) / 2; in vtm_get_best_value()
104 return (s0 + s2) / 2; in vtm_get_best_value()
113 unsigned int dtemp, s0, s1, s2; in k3_bgp_read_temp() local
126 s0 = readl(bgp->base + devdata->stat_offset) & in k3_bgp_read_temp()
132 dtemp = vtm_get_best_value(s0, s1, s2); in k3_bgp_read_temp()
/openbmc/linux/arch/arm64/crypto/
H A Dsm3-ce-core.S44 .macro round, ab, s0, t0, t1, i
49 sm3tt2\ab v9.4s, v5.4s, \s0\().4s, \i
52 .macro qround, ab, s0, s1, s2, s3, s4
55 ext v6.16b, \s0\().16b, \s1\().16b, #12
57 sm3partw1 \s4\().4s, \s0\().4s, \s3\().4s
60 eor v10.16b, \s0\().16b, \s1\().16b
62 round \ab, \s0, v11, v12, 0
63 round \ab, \s0, v12, v11, 1
64 round \ab, \s0, v11, v12, 2
65 round \ab, \s0, v12, v11, 3
H A Dsha2-ce-core.S29 .macro add_only, ev, rc, s0 argument
32 add t1.4s, v\s0\().4s, \rc\().4s
36 .ifnb \s0
37 add t0.4s, v\s0\().4s, \rc\().4s
44 .macro add_update, ev, rc, s0, s1, s2, s3
45 sha256su0 v\s0\().4s, v\s1\().4s
47 sha256su1 v\s0\().4s, v\s2\().4s, v\s3\().4s
H A Dsha1-ce-core.S34 .macro add_only, op, ev, rc, s0, dg1
36 add t1.4s, v\s0\().4s, \rc\().4s
44 .ifnb \s0
45 add t0.4s, v\s0\().4s, \rc\().4s
52 .macro add_update, op, ev, rc, s0, s1, s2, s3, dg1
53 sha1su0 v\s0\().4s, v\s1\().4s, v\s2\().4s
55 sha1su1 v\s0\().4s, v\s3\().4s
/openbmc/linux/arch/arm/boot/dts/aspeed/
H A Daspeed-bmc-ampere-mtjade.dts117 channels = "s0", "s1";
126 channels = "s0", "s1";
135 channels = "s0", "s1";
144 channels = "s0", "s1";
153 channels = "s0", "s1";
162 channels = "s0", "s1";
171 channels = "s0", "s1";
180 channels = "s0", "s1";
189 channels = "s0", "s1";
198 channels = "s0", "s1";
[all …]
H A Daspeed-bmc-ampere-mtmitchell.dts168 channels = "s0", "s1";
178 channels = "s0", "s1";
188 channels = "s0", "s1";
198 channels = "s0", "s1";
208 channels = "s0", "s1";
218 channels = "s0", "s1";
228 channels = "s0", "s1";
238 channels = "s0", "s1";
248 channels = "s0", "s1";
258 channels = "s0", "s1";
[all …]
/openbmc/u-boot/arch/sh/lib/
H A Dzimageboot.c19 char *s0, *s1; in do_sh_zimageboot() local
28 s0 = argv[1]; in do_sh_zimageboot()
35 if (s0) in do_sh_zimageboot()
36 zboot_entry = (ulong (*)(int, char * const []))simple_strtoul(s0, NULL, 16); in do_sh_zimageboot()
/openbmc/linux/scripts/selinux/
H A Dinstall_policy.sh49 client * user_u:base_r:base_t:s0
50 property * user_u:object_r:base_t:s0
51 extension * user_u:object_r:base_t:s0
52 selection * user_u:object_r:base_t:s0
53 event * user_u:object_r:base_t:s0
/openbmc/linux/arch/x86/crypto/
H A Dsm4-aesni-avx-asm_64.S188 #define ROUND(round, s0, s1, s2, s3) \ argument
201 vpxor RTMP0, s0, s0; /* s0 ^ x */ \
207 vpxor RTMP1, s0, s0; /* s0 ^ x ^ rol(x,24) */ \
210 vpxor RTMP0, s0, s0; \
212 vpxor RTMP1, s0, s0;
276 #define ROUND(round, s0, s1, s2, s3, r0, r1, r2, r3) \ argument
301 vpxor RTMP0, s0, s0; /* s0 ^ x */ \
316 vpxor RTMP1, s0, s0; /* s0 ^ x ^ rol(x,24) */ \
320 vpxor RTMP0, s0, s0; \
321 vpxor RTMP1, s0, s0; \
/openbmc/linux/arch/mips/include/asm/mach-loongson64/
H A Dkernel-entry-init.h87 mfc0 s0, CP0_PRID
88 andi s0, s0, (PRID_IMP_MASK | PRID_REV_MASK)
89 beq s0, (PRID_IMP_LOONGSON_64C | PRID_REV_LOONGSON3B_R1), 1f
90 beq s0, (PRID_IMP_LOONGSON_64C | PRID_REV_LOONGSON3B_R2), 1f

12345678910