Home
last modified time | relevance | path

Searched refs:S1 (Results 1 – 25 of 81) sorted by relevance

1234

/openbmc/linux/arch/x86/crypto/
H A Dsha256-avx-asm.S175 MY_ROR 6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25)
178 add y0, y2 # y2 = S1 + CH
179 add _XFER(%rsp), y2 # y2 = k + w + S1 + CH
181 add y2, h # h = h + S1 + CH + k + w
185 add h, d # d = d + h + S1 + CH + k + w
189 add y1, h # h = h + S1 + CH + k + w + S0
192 add y0, h # h = h + S1 + CH + k + w + S0 + MAJ
208 MY_ROR 6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25)
213 add y0, y2 # y2 = S1 + CH
214 add (1*4 + _XFER)(%rsp), y2 # y2 = k + w + S1 + CH
[all …]
H A Dsha256-ssse3-asm.S170 ror $6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25)
174 add y0, y2 # y2 = S1 + CH
175 add _XFER(%rsp) , y2 # y2 = k + w + S1 + CH
178 add y2, h # h = h + S1 + CH + k + w
182 add h, d # d = d + h + S1 + CH + k + w
186 add y1, h # h = h + S1 + CH + k + w + S0
189 add y0, h # h = h + S1 + CH + k + w + S0 + MAJ
208 ror $6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25)
213 add y0, y2 # y2 = S1 + CH
214 add (1*4 + _XFER)(%rsp), y2 # y2 = k + w + S1 + CH
[all …]
H A Dsha256-avx2-asm.S167 xor y1, y0 # y0 = (e>>25) ^ (e>>11) # S1
169 vpaddd X0, XTMP0, XTMP0 # XTMP0 = W[-7] + W[-16]# y1 = (e >> 6)# S1
170 rorx $6, e, y1 # y1 = (e >> 6) # S1
173 xor y1, y0 # y0 = (e>>25) ^ (e>>11) ^ (e>>6) # S1
188 add y0, y2 # y2 = S1 + CH # --
193 add y2, d # d = k + w + h + d + S1 + CH = d + t1 # --
197 add y2, h # h = k + w + h + S0 + S1 + CH = t1 + S0# --
216 xor y1, y0 # y0 = (e>>25) ^ (e>>11) # S1
220 rorx $6, e, y1 # y1 = (e >> 6) # S1
221 xor y1, y0 # y0 = (e>>25) ^ (e>>11) ^ (e>>6) # S1
[all …]
H A Dsha512-avx2-asm.S190 xor y1, y0 # y0 = (e>>41) ^ (e>>18) # S1
192 rorx $14, e, y1 # y1 = (e >> 14) # S1
195 xor y1, y0 # y0 = (e>>41) ^ (e>>18) ^ (e>>14) # S1
208 add y0, y2 # y2 = S1 + CH # --
212 add y2, d # d = k + w + h + d + S1 + CH = d + t1 # --
214 add y2, h # h = k + w + h + S0 + S1 + CH = t1 + S0# --
253 xor y1, y0 # y0 = (e>>41) ^ (e>>18) # S1
257 rorx $14, e, y1 # y1 = (e >> 14) # S1
258 xor y1, y0 # y0 = (e>>41) ^ (e>>18) ^ (e>>14) # S1
272 add y0, y2 # y2 = S1 + CH # --
[all …]
H A Dpoly1305-x86_64-cryptogams.pl2207 my ($R0,$R1,$R2,$R3,$R4, $S1,$S2,$S3,$S4) = map("%zmm$_",(16..24));
2252 vmovdqu `16*2-64`($ctx),%x#$T0 # ... ${S1}
2262 vpermd $T0,$T2,$S1
2270 vmovdqa64 $S1,0x40(%rsp){%k2}
2334 vpmuludq $T4,$S1,$M0
2411 vpslld \$2,$R1,$S1 # *5
2415 vpaddd $R1,$S1,$S1
2526 vpmuludq $H4,$S1,$M0
2602 vpsrlq \$32,$S1,$S1
2666 vpmuludq $H4,$S1,$M0
[all …]
/openbmc/linux/drivers/block/drbd/
H A Ddrbd_state.h40 #define NS2(T1, S1, T2, S2) \ argument
43 ({ union drbd_state val; val.i = 0; val.T1 = (S1); \
45 #define NS3(T1, S1, T2, S2, T3, S3) \ argument
48 ({ union drbd_state val; val.i = 0; val.T1 = (S1); \
53 #define _NS2(D, T1, S1, T2, S2) \ argument
54 D, ({ union drbd_state __ns; __ns = drbd_read_state(D); __ns.T1 = (S1); \
56 #define _NS3(D, T1, S1, T2, S2, T3, S3) \ argument
57 D, ({ union drbd_state __ns; __ns = drbd_read_state(D); __ns.T1 = (S1); \
/openbmc/linux/scripts/coccinelle/null/
H A Dderef_null.cocci44 statement S1,S2;
48 if@p1 ((E == NULL && ...) || ...) S1 else S2
57 statement S1,S2,S3,S4;
65 ... when != if (...) S1 else S2
118 statement S1,S2,S3,S4;
126 ... when != if (...) S1 else S2
178 statement S1,S2,S3,S4;
186 ... when != if (...) S1 else S2
240 statement S1,S2;
244 if@p1 ((E == NULL && ...) || ...) S1 else S2
[all …]
/openbmc/linux/sound/core/oss/
H A Drate.c71 signed short S1, S2; in resample_expand() local
81 S1 = rchannels->last_S1; in resample_expand()
101 S1 = S2; in resample_expand()
107 val = S1 + ((S2 - S1) * (signed int)pos) / BITS; in resample_expand()
116 rchannels->last_S1 = S1; in resample_expand()
130 signed short S1, S2; in resample_shrink() local
140 S1 = rchannels->last_S1; in resample_shrink()
158 S1 = S2; in resample_shrink()
165 val = S1 + ((S2 - S1) * (signed int)pos) / BITS; in resample_shrink()
176 rchannels->last_S1 = S1; in resample_shrink()
/openbmc/linux/tools/testing/selftests/bpf/progs/
H A Dbtf_data.c15 struct S1 { struct
31 typedef int S1; argument
38 S1 m_4;
42 struct S1 m_8;
/openbmc/linux/arch/arm/crypto/
H A Dpoly1305-armv4.pl495 my ($R0,$R1,$S1,$R2,$S2,$R3,$S3,$R4,$S4) = map("d$_",(0..9));
534 vdup.32 $S1,r2
560 vmlal.u32 $D0,$R4,${S1}[1]
679 vshl.u32 $S1,$R1,#2
682 vadd.i32 $S1,$S1,$R1
686 vst4.32 {${R0}[0],${R1}[0],${S1}[0],${R2}[0]},[$tbl0]!
687 vst4.32 {${R0}[1],${R1}[1],${S1}[1],${R2}[1]},[$tbl1]!
701 vshl.u32 $S1,$D1#lo,#2 @ *5
709 vadd.i32 $S1,$S1,$D1#lo
714 vst4.32 {${R0}[0],${R1}[0],${S1}[0],${R2}[0]},[$tbl0]!
[all …]
/openbmc/linux/tools/perf/Documentation/
H A Dperf-iostat.txt44 S1-uncore_iio_0<0000:80>
46 S1-uncore_iio_1<0000:85>
48 S1-uncore_iio_2<0000:ae>
50 S1-uncore_iio_3<0000:d7>
/openbmc/linux/scripts/coccinelle/api/
H A Dmemdup_user.cocci76 statement S1,S2;
82 if (to==NULL || ...) S1
89 statement S1,S2;
93 if (to==NULL || ...) S1
H A Dd_find_alias.cocci18 statement S1, S2;
22 if (!(dent@p1 = d_find_alias(...))) S1
/openbmc/u-boot/scripts/coccinelle/iterators/
H A Ditnull.cocci24 statement S,S1,S2;
47 - if (x == NULL && ...) S1 else
51 S1
/openbmc/linux/scripts/coccinelle/iterators/
H A Ditnull.cocci25 statement S,S1,S2;
48 - if (x == NULL && ...) S1 else
52 S1
/openbmc/openpower-sbe-interface/
H A Dsbe_chipOp_handler.hpp72 template <size_t S1, size_t S2>
74 const std::array<sbe_word_t, S1>& request, in invokeSBEChipOperation()
/openbmc/qemu/tests/qemu-iotests/
H A D29445 S1="--object secret,id=sec1,data=hunter1"
46 SECRETS="$S0 $S1"
/openbmc/linux/scripts/coccinelle/misc/
H A Dcond_no_effect.cocci49 statement S1;
53 * if@p (...) S1 else S1
H A Difcol.cocci24 statement S1,S2;
30 if (...) S1@p1 S2@p2
/openbmc/linux/scripts/coccinelle/free/
H A Diounmap.cocci21 statement S,S1;
33 if (ret == 0) S1
H A Dclk_put.cocci21 statement S,S1;
33 if (ret == 0) S1
/openbmc/qemu/crypto/
H A Dxts.c36 const xts_uint128 *S1, in xts_uint128_xor() argument
39 D->u[0] = S1->u[0] ^ S2->u[0]; in xts_uint128_xor()
40 D->u[1] = S1->u[1] ^ S2->u[1]; in xts_uint128_xor()
/openbmc/linux/arch/arm64/crypto/
H A Dpoly1305-armv8.pl262 my ($R0,$R1,$S1,$R2,$S2,$R3,$S3,$R4,$S4) = map("v$_.4s",(0..8));
513 ld1 {$R0,$R1,$S1,$R2},[x15],#64
628 umlal $ACC0,$IN23_4,${S1}[2]
689 umlal $ACC0,$IN01_4,${S1}[0]
785 umlal2 $ACC0,$IN23_4,${S1}
824 umlal $ACC0,$IN01_4,${S1}
/openbmc/linux/Documentation/power/
H A Dvideo.rst16 problem for S1 standby, because hardware should retain its state over
112 Asus L2400D s3_mode (3) [#f2]_ (S1 also works OK)
114 Asus L3800C (Radeon M7) s3_bios (2) (S1 also works OK)
119 Compaq Armada E500 - P3-700 none (1) (S1 also works OK)
143 HP Omnibook 5150 none (1), (S1 also works OK)
190 Toshiba Satellite 4030CDT s3_mode (3) (S1 also works OK)
191 Toshiba Satellite 4080XCDT s3_mode (3) (S1 also works OK)
/openbmc/linux/Documentation/admin-guide/media/
H A Dopera-firmware.rst8 To extract the firmware for the Opera DVB-S1 USB-Box

1234