/linux/lib/crypto/x86/ |
H A D | sha256-avx-asm.S | 174 MY_ROR 6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25) 177 add y0, y2 # y2 = S1 + CH 178 add _XFER(%rsp), y2 # y2 = k + w + S1 + CH 180 add y2, h # h = h + S1 + CH + k + w 184 add h, d # d = d + h + S1 + CH + k + w 188 add y1, h # h = h + S1 + CH + k + w + S0 191 add y0, h # h = h + S1 + CH + k + w + S0 + MAJ 207 MY_ROR 6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25) 212 add y0, y2 # y2 = S1 + CH 213 add (1*4 + _XFER)(%rsp), y2 # y2 = k + w + S1 [all...] |
H A D | sha256-ssse3-asm.S | 169 ror $6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25) 173 add y0, y2 # y2 = S1 + CH 174 add _XFER(%rsp) , y2 # y2 = k + w + S1 + CH 177 add y2, h # h = h + S1 + CH + k + w 181 add h, d # d = d + h + S1 + CH + k + w 185 add y1, h # h = h + S1 + CH + k + w + S0 188 add y0, h # h = h + S1 + CH + k + w + S0 + MAJ 207 ror $6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25) 212 add y0, y2 # y2 = S1 + CH 213 add (1*4 + _XFER)(%rsp), y2 # y2 = k + w + S1 [all...] |
H A D | sha256-avx2-asm.S | 166 xor y1, y0 # y0 = (e>>25) ^ (e>>11) # S1 168 vpaddd X0, XTMP0, XTMP0 # XTMP0 = W[-7] + W[-16]# y1 = (e >> 6)# S1 169 rorx $6, e, y1 # y1 = (e >> 6) # S1 172 xor y1, y0 # y0 = (e>>25) ^ (e>>11) ^ (e>>6) # S1 187 add y0, y2 # y2 = S1 + CH # -- 192 add y2, d # d = k + w + h + d + S1 + CH = d + t1 # -- 196 add y2, h # h = k + w + h + S0 + S1 + CH = t1 + S0# -- 215 xor y1, y0 # y0 = (e>>25) ^ (e>>11) # S1 219 rorx $6, e, y1 # y1 = (e >> 6) # S1 220 xor y1, y0 # y0 = (e>>25) ^ (e>>11) ^ (e>>6) # S1 [all...] |
H A D | sha512-avx2-asm.S | 189 xor y1, y0 # y0 = (e>>41) ^ (e>>18) # S1 191 rorx $14, e, y1 # y1 = (e >> 14) # S1 194 xor y1, y0 # y0 = (e>>41) ^ (e>>18) ^ (e>>14) # S1 207 add y0, y2 # y2 = S1 + CH # -- 211 add y2, d # d = k + w + h + d + S1 + CH = d + t1 # -- 213 add y2, h # h = k + w + h + S0 + S1 + CH = t1 + S0# -- 252 xor y1, y0 # y0 = (e>>41) ^ (e>>18) # S1 256 rorx $14, e, y1 # y1 = (e >> 14) # S1 257 xor y1, y0 # y0 = (e>>41) ^ (e>>18) ^ (e>>14) # S1 271 add y0, y2 # y2 = S1 [all...] |
H A D | poly1305-x86_64-cryptogams.pl | 2220 my ($R0,$R1,$R2,$R3,$R4, $S1,$S2,$S3,$S4) = map("%zmm$_",(16..24)); 2265 vmovdqu `16*2-64`($ctx),%x#$T0 # ... ${S1} 2275 vpermd $T0,$T2,$S1 2283 vmovdqa64 $S1,0x40(%rsp){%k2} 2347 vpmuludq $T4,$S1,$M0 2424 vpslld \$2,$R1,$S1 # *5 2428 vpaddd $R1,$S1,$S1 2539 vpmuludq $H4,$S1,$M0 2615 vpsrlq \$32,$S1, [all...] |
/linux/kernel/trace/rv/monitors/sleep/ |
H A D | sleep.h | 65 S1, enumerator 117 __set_bit(S1, mon->states); in ltl_start() 168 __set_bit(S1, next); in ltl_possible_next_states() 174 case S1: in ltl_possible_next_states() 176 __set_bit(S1, next); in ltl_possible_next_states() 190 __set_bit(S1, next); in ltl_possible_next_states() 206 __set_bit(S1, next); in ltl_possible_next_states() 216 __set_bit(S1, next); in ltl_possible_next_states() 226 __set_bit(S1, next); in ltl_possible_next_states() 234 __set_bit(S1, nex in ltl_possible_next_states() [all...] |
/linux/drivers/block/drbd/ |
H A D | drbd_state.h | 40 #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); \
|
/linux/tools/testing/selftests/bpf/progs/ |
H A D | btf_data.c | 15 struct S1 { struct 31 typedef int S1; typedef 38 S1 m_4; 42 struct S1 m_8;
|
/linux/sound/core/oss/ |
H A D | rate.c | 71 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 in resample_shrink() [all...] |
/linux/scripts/coccinelle/null/ |
H A D | deref_null.cocci | 44 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 els [all...] |
/linux/lib/crypto/arm/ |
H A D | poly1305-armv4.pl | 494 my ($R0,$R1,$S1,$R2,$S2,$R3,$S3,$R4,$S4) = map("d$_",(0..9)); 533 vdup.32 $S1,r2 559 vmlal.u32 $D0,$R4,${S1}[1] 678 vshl.u32 $S1,$R1,#2 681 vadd.i32 $S1,$S1,$R1 685 vst4.32 {${R0}[0],${R1}[0],${S1}[0],${R2}[0]},[$tbl0]! 686 vst4.32 {${R0}[1],${R1}[1],${S1}[1],${R2}[1]},[$tbl1]! 700 vshl.u32 $S1,$D1#lo,#2 @ *5 708 vadd.i32 $S1, [all...] |
/linux/tools/perf/Documentation/ |
H A D | perf-iostat.txt | 44 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>
|
/linux/scripts/coccinelle/api/ |
H A D | memdup_user.cocci | 76 statement S1,S2; 82 if (to==NULL || ...) S1 89 statement S1,S2; 93 if (to==NULL || ...) S1
|
H A D | d_find_alias.cocci | 18 statement S1, S2; 22 if (!(dent@p1 = d_find_alias(...))) S1
|
/linux/scripts/coccinelle/iterators/ |
H A D | itnull.cocci | 25 statement S,S1,S2; 48 - if (x == NULL && ...) S1 else 52 S1
|
/linux/scripts/coccinelle/misc/ |
H A D | cond_no_effect.cocci | 49 statement S1; 53 * if@p (...) S1 else S1
|
H A D | ifcol.cocci | 24 statement S1,S2; 30 if (...) S1@p1 S2@p2
|
/linux/scripts/coccinelle/free/ |
H A D | clk_put.cocci | 21 statement S,S1; 33 if (ret == 0) S1
|
H A D | iounmap.cocci | 21 statement S,S1; 33 if (ret == 0) S1
|
/linux/lib/crypto/arm64/ |
H A D | poly1305-armv8.pl | 262 my ($R0,$R1,$S1,$R2,$S2,$R3,$S3,$R4,$S4) = map("v$_.4s",(0..8)); 514 ld1 {$R0,$R1,$S1,$R2},[x15],#64 629 umlal $ACC0,$IN23_4,${S1}[2] 690 umlal $ACC0,$IN01_4,${S1}[0] 786 umlal2 $ACC0,$IN23_4,${S1} 825 umlal $ACC0,$IN01_4,${S1}
|
/linux/Documentation/power/ |
H A D | video.rst | 16 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)
|
/linux/arch/powerpc/crypto/ |
H A D | aes-gcm-p10.S | 167 # PPC_GHASH4x(H, S1, S2, S3, S4): Compute 4x hash values based on Karatsuba method. 171 # S1 should xor with the previous digest 178 .macro PPC_GHASH4x H S1 S2 S3 S4 180 vpmsumd 23, 12, \S1 # H4.L * X.L 185 vpmsumd 27, 13, \S1 # H4.L * X.H + H4.H * X.L 213 vpmsumd 26, 14, \S1 # H4.H * X.H 235 .macro PPC_GHASH1x H S1 argument 239 vpmsumd 22, 3, \S1 # L 240 vpmsumd 23, 4, \S1 # M 241 vpmsumd 24, 5, \S1 # [all...] |
/linux/Documentation/admin-guide/media/ |
H A D | opera-firmware.rst | 8 To extract the firmware for the Opera DVB-S1 USB-Box
|
/linux/crypto/ |
H A D | serpent_generic.c | 73 #define S1(x0, x1, x2, x3, x4) ({ \ macro 238 S1(r0, r2, r4, r1, r3); store_and_load_keys(r3, r4, r1, r0, 4, 0); in __serpent_setkey_sbox() 247 S1(r3, r1, r4, r0, r2); store_and_load_keys(r2, r4, r0, r3, 22, 18); in __serpent_setkey_sbox() 255 S1(r2, r0, r4, r3, r1); store_and_load_keys(r1, r4, r3, r2, -10, -14); in __serpent_setkey_sbox() 264 S1(r1, r3, r4, r2, r0); store_and_load_keys(r0, r4, r2, r1, 8, 4); in __serpent_setkey_sbox() 471 S1(r2, r1, r3, r0, r4); LK(r4, r3, r0, r2, r1, 2); in __serpent_encrypt() 479 S1(r4, r0, r3, r2, r1); LK(r1, r3, r2, r4, r0, 10); in __serpent_encrypt() 487 S1(r1, r2, r3, r4, r0); LK(r0, r3, r4, r1, r2, 18); in __serpent_encrypt() 495 S1(r0, r4, r3, r1, r2); LK(r2, r3, r1, r0, r4, 26); in __serpent_encrypt()
|
/linux/drivers/net/dsa/ocelot/ |
H A D | ocelot_ext.c | 45 [S1] = "s1",
|