Home
last modified time | relevance | path

Searched +full:18 +full:k (Results 1 – 25 of 986) sorted by relevance

12345678910>>...40

/Linux-v6.1/arch/x86/crypto/
Dsha512-avx2-asm.S183 rorx $18, e, y1 # y1 = e >> 18 # S1B
184 add frame_XFER(%rsp),h # h = k + w + h # --
189 xor y1, y0 # y0 = (e>>41) ^ (e>>18) # S1
194 xor y1, y0 # y0 = (e>>41) ^ (e>>18) ^ (e>>14) # S1
196 add h, d # d = k + w + h + d # --
209 add y1, h # h = k + w + h + S0 # --
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# --
233 # Move to appropriate lanes for calculating w[18] and w[19]
245 rorx $18, e, y1 # y1 = e >> 18 # S1B
[all …]
Dsha512-avx-asm.S77 # W[t] + K[t] | W[t+1] + K[t+1]
100 # W[t]+K[t] (stack frame)
131 add WK_2(idx), T1 # W[t] + K[t] from message scheduler
132 RORQ tmp0, 4 # 18 # tmp = ((e ror 23) ^ e) ror 4
135 add h_64, T1 # T1 = CH(e,f,g) + W[t] + K[t] + h
137 add tmp0, T1 # T1 = CH(e,f,g) + W[t] + K[t] + S1(e)
159 # Two rounds are computed based on the values for K[t-2]+W[t-2] and
160 # K[t-1]+W[t-1] which were previously stored at WK_2 by the message
189 RORQ tmp0, 4 # 18
238 RORQ tmp0, 4 # 18
[all …]
Dsha512-ssse3-asm.S98 # W[t]+K[t] (stack frame)
125 add WK_2(idx), T1 # W[t] + K[t] from message scheduler
126 ror $4, tmp0 # 18 # tmp = ((e ror 23) ^ e) ror 4
129 add h_64, T1 # T1 = CH(e,f,g) + W[t] + K[t] + h
131 add tmp0, T1 # T1 = CH(e,f,g) + W[t] + K[t] + S1(e)
154 # Two rounds are computed based on the values for K[t-2]+W[t-2] and
155 # K[t-1]+W[t-1] which were previously stored at WK_2 by the message
184 ror $4, tmp0 # 18
229 ror $4, tmp0 # 18
257 paddq K_t(\rnd), %xmm0 # Compute W[t]+K[t]
[all …]
Dsha256-ssse3-asm.S174 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
199 pslld $(32-18), XTMP3 #
203 psrld $18, XTMP2 #
213 add (1*4 + _XFER)(%rsp), y2 # y2 = k + w + S1 + CH
215 pxor XTMP2, XTMP1 # XTMP1 = W[-15] ror 7 ^ W[-15] ror 18
217 add y2, h # h = h + S1 + CH + k + w
[all …]
/Linux-v6.1/crypto/
Dserpent_generic.c25 ({ b ^= d; b ^= c; b ^= a; b ^= PHI ^ i; b = rol32(b, 11); k[j] = b; })
28 ({ x0 = k[i]; x1 = k[i+1]; x2 = k[i+2]; x3 = k[i+3]; })
31 ({ k[i] = x0; k[i+1] = x1; k[i+2] = x2; k[i+3] = x3; })
36 #define K(x0, x1, x2, x3, i) ({ \ macro
37 x3 ^= k[4*(i)+3]; x2 ^= k[4*(i)+2]; \
38 x1 ^= k[4*(i)+1]; x0 ^= k[4*(i)+0]; \
48 x0 ^= x3; x2 ^= x4; x3 ^= k[4*i+3]; \
49 x1 ^= k[4*i+1]; x0 = rol32(x0, 5); x2 = rol32(x2, 22);\
50 x0 ^= k[4*i+0]; x2 ^= k[4*i+2]; \
54 x0 ^= k[4*i+0]; x1 ^= k[4*i+1]; x2 ^= k[4*i+2]; \
[all …]
Dsm3.c15 static const u32 ____cacheline_aligned K[64] = { variable
85 R1(a, b, c, d, e, f, g, h, K[0], I(0), I(4)); in sm3_transform()
86 R1(d, a, b, c, h, e, f, g, K[1], I(1), I(5)); in sm3_transform()
87 R1(c, d, a, b, g, h, e, f, K[2], I(2), I(6)); in sm3_transform()
88 R1(b, c, d, a, f, g, h, e, K[3], I(3), I(7)); in sm3_transform()
89 R1(a, b, c, d, e, f, g, h, K[4], W1(4), I(8)); in sm3_transform()
90 R1(d, a, b, c, h, e, f, g, K[5], W1(5), I(9)); in sm3_transform()
91 R1(c, d, a, b, g, h, e, f, K[6], W1(6), I(10)); in sm3_transform()
92 R1(b, c, d, a, f, g, h, e, K[7], W1(7), I(11)); in sm3_transform()
93 R1(a, b, c, d, e, f, g, h, K[8], W1(8), I(12)); in sm3_transform()
[all …]
/Linux-v6.1/include/uapi/linux/
Dkeyboard.h45 #define K(t,v) (((t)<<8)|(v)) macro
49 #define K_F1 K(KT_FN,0)
50 #define K_F2 K(KT_FN,1)
51 #define K_F3 K(KT_FN,2)
52 #define K_F4 K(KT_FN,3)
53 #define K_F5 K(KT_FN,4)
54 #define K_F6 K(KT_FN,5)
55 #define K_F7 K(KT_FN,6)
56 #define K_F8 K(KT_FN,7)
57 #define K_F9 K(KT_FN,8)
[all …]
/Linux-v6.1/arch/sparc/crypto/
Dcamellia_asm.S36 ld [%o0 + 0x00], %f0 ! i0, k[0]
37 ld [%o0 + 0x04], %f1 ! i1, k[1]
38 ld [%o0 + 0x08], %f2 ! i2, k[2]
39 ld [%o0 + 0x0c], %f3 ! i3, k[3]
40 std %f0, [%o1 + 0x00] ! k[0, 1]
42 std %f2, [%o1 + 0x08] ! k[2, 3]
49 std %f0, [%o1 + 0x20] ! k[8, 9]
57 std %f2, [%o1 + 0x28] ! k[10, 11]
71 CAMELLIA_F(18, 0, 2, 0)
89 std %f0, [%o1 + 0x10] ! k[ 4, 5]
[all …]
/Linux-v6.1/arch/powerpc/crypto/
Dmd5-asm.S68 addi w0,w0,k0l; /* 1: wk = w + k */ \
70 addis w0,w0,k0h; /* 1: wk = w + k' */ \
71 addis w1,w1,k1h; /* 2: wk = w + k */ \
73 addi w1,w1,k1l; /* 2: wk = w + k' */ \
88 addi w0,w0,k0l; /* 1: wk = w + k */ \
90 addis w0,w0,k0h; /* 1: wk = w + k' */ \
92 addi w1,w1,k1l; /* 2: wk = w + k */ \
94 addis w1,w1,k1h; /* 2: wk = w + k' */ \
107 addi w0,w0,k0l; /* 1: wk = w + k */ \
109 addis w0,w0,k0h; /* 1: wk = w + k' */ \
[all …]
/Linux-v6.1/Documentation/devicetree/bindings/
Dtrivial-devices.yaml230 # Microchip differential I2C ADC, 1 Channel, 18 bit
232 # Microchip differential I2C ADC, 2 Channel, 18 bit
234 # Microchip differential I2C ADC, 2 Channel, 18 bit
236 # Microchip differential I2C ADC, 4 Channel, 18 bit
246 # Microchip 7-bit Single I2C Digital POT (5k)
248 # Microchip 7-bit Single I2C Digital POT (10k)
250 # Microchip 7-bit Single I2C Digital POT (50k)
252 # Microchip 7-bit Single I2C Digital POT (100k)
254 # Microchip 7-bit Single I2C Digital POT (5k)
256 # Microchip 7-bit Single I2C Digital POT (10k)
[all …]
/Linux-v6.1/tools/testing/kunit/test_data/
Dtest_output_isolated_correctly.log1 …@mactruck.svl.corp.google.com) (gcc version 7.3.0 (Debian 7.3.0-18)) #163 Wed May 8 16:18:20 PDT 2…
6 Memory: 254468K/283500K available (1734K kernel code, 489K rwdata, 396K rodata, 85K init, 216K bss,…
/Linux-v6.1/arch/arc/include/asm/
Duaccess.h11 * -stock kernel shrunk by 33K at -O3
15 * -kernel shrunk by 200K even at -O3 (gcc 4.2.1)
28 #define __get_user_fn(sz, u, k) \ argument
32 case 1: __arc_get_user_one(*(k), u, "ldb", __ret); break; \
33 case 2: __arc_get_user_one(*(k), u, "ldw", __ret); break; \
34 case 4: __arc_get_user_one(*(k), u, "ld", __ret); break; \
35 case 8: __arc_get_user_one_64(*(k), u, __ret); break; \
89 #define __put_user_fn(sz, u, k) \ argument
93 case 1: __arc_put_user_one(*(k), u, "stb", __ret); break; \
94 case 2: __arc_put_user_one(*(k), u, "stw", __ret); break; \
[all …]
/Linux-v6.1/drivers/media/i2c/
Dmt9t112.c305 dev_dbg(&client->dev, "EXTCLK : %10u K %s\n", ext, enable); in mt9t112_clock_info()
309 dev_dbg(&client->dev, "VCO : %10u K %s\n", vco, enable); in mt9t112_clock_info()
313 dev_dbg(&client->dev, "PIXCLK : %10u K %s\n", clk, enable); in mt9t112_clock_info()
317 dev_dbg(&client->dev, "MIPICLK : %10u K %s\n", clk, enable); in mt9t112_clock_info()
321 dev_dbg(&client->dev, "MCU CLK : %10u K %s\n", clk, enable); in mt9t112_clock_info()
325 dev_dbg(&client->dev, "SOC CLK : %10u K %s\n", clk, enable); in mt9t112_clock_info()
329 dev_dbg(&client->dev, "Sensor CLK : %10u K %s\n", clk, enable); in mt9t112_clock_info()
332 dev_dbg(&client->dev, "External sensor : %10u K\n", clk); in mt9t112_clock_info()
336 dev_dbg(&client->dev, "PFD : %10u K %s\n", clk, enable); in mt9t112_clock_info()
354 mt9t112_mcu_write(ret, client, VAR(18, 43), 8 + width); in mt9t112_set_a_frame_size()
[all …]
/Linux-v6.1/drivers/clk/berlin/
Dbg2q.c129 BERLIN2_PLL_SELECT(REG_CLKSELECT0, 18),
161 BERLIN2_PLL_SWITCH(REG_CLKSWITCH0, 18),
204 BERLIN2_PLL_SELECT(REG_CLKSELECT1, 18),
276 { "nfc", "perif", 18 },
340 int k; in berlin2q_clock_setup() local
342 for (k = 0; k < dd->num_parents; k++) in berlin2q_clock_setup()
343 parent_names[k] = clk_names[dd->parent_ids[k]]; in berlin2q_clock_setup()
/Linux-v6.1/arch/powerpc/
DKconfig25 # consume "normal" amounts of address space. Book3S 64 only supports 64K
26 # and 4K page sizes.
27 default 29 if PPC_BOOK3S_64 && PPC_64K_PAGES # 29 = 45 (32T) - 16 (64K)
28 default 33 if PPC_BOOK3S_64 # 33 = 45 (32T) - 12 (4K)
32 # of address space (2^44). Only 4K page sizes are supported.
33 default 32 if 64BIT # 32 = 44 (16T) - 12 (4K)
40 default 14 if 64BIT && PPC_64K_PAGES # 14 = 30 (1GB) - 16 (64K)
41 default 18 if 64BIT # 18 = 30 (1GB) - 12 (4K)
49 default 11 if PPC_256K_PAGES # 11 = 29 (512MB) - 18 (256K)
50 default 13 if PPC_64K_PAGES # 13 = 29 (512MB) - 16 (64K)
[all …]
/Linux-v6.1/Documentation/devicetree/bindings/arm/marvell/
Dap80x-system-controller.txt5 7K/8K/931x SoCs. It contains system controllers, which provide several
69 mpp18 18 gpio
79 - compatible: "marvell,armada-8k-gpio"
103 compatible = "marvell,armada-8k-gpio";
136 - interrupts: overheat interrupt handle. Should point to line 18 of the
152 interrupts = <18>;
/Linux-v6.1/arch/arm64/boot/dts/marvell/
Darmada-cp11x.dtsi61 compatible = "marvell,armada-7k-pp22";
65 <&CP11X_LABEL(clk) 1 18>;
135 <&CP11X_LABEL(clk) 1 18>;
177 <&CP11X_LABEL(clk) 1 6>, <&CP11X_LABEL(clk) 1 18>;
187 <&CP11X_LABEL(clk) 1 6>, <&CP11X_LABEL(clk) 1 18>;
215 compatible = "marvell,armada-8k-rtc";
231 compatible = "marvell,armada-8k-gpio";
252 compatible = "marvell,armada-8k-gpio";
308 compatible = "marvell,armada-8k-xhci",
320 compatible = "marvell,armada-8k-xhci",
[all …]
/Linux-v6.1/Documentation/devicetree/bindings/phy/
Dphy-mvebu-comphy.txt5 * Armada 7k/8k (on the CP110)
13 * "marvell,comphy-cp110" for Armada 7k/8k
16 * 1 entry for Armada 7k/8k
24 controller node (only for Armada 7k/8k)
50 <&CP11X_LABEL(clk) 1 18>;
/Linux-v6.1/arch/m68k/include/asm/
Dthread_info.h9 * On machines with 4k pages we default to an 8k thread size, though we
10 * allow a 4k with config option. Any other machine page size then
11 * the thread size must match the page size (which is 8k and larger here).
67 #define TIF_RESTORE_SIGMASK 18 /* restore signal mask in do_signal */
/Linux-v6.1/Documentation/devicetree/bindings/iio/temperature/
Dadi,ltc2983.yaml85 2 - Type K Thermocouple
117 voltage(mv)-temperature(K). The entries must be given in nv and uK
194 18 - RTD Custom
197 maximum: 18
241 resistance(ohm)-temperature(K). The entries added here are in uohm
272 25 - Thermistor Spectrum 1003k 1kohm
315 resistance(ohm)-temperature(K). The entries added here are in uohm
404 thermocouple@18 {
405 reg = <18>;
/Linux-v6.1/Documentation/devicetree/bindings/net/
Dmarvell-pp2.txt2 Marvell Armada 7K/8K Ethernet Controller (PPv2.2)
9 "marvell,armada-7k-pp2"
16 For "marvell,armada-7k-pp2" used by 7K/8K and CN913X, must contain the following register
23 - main controller clock (for both armada-375-pp2 and armada-7k-pp2)
24 - GOP clock (for both armada-375-pp2 and armada-7k-pp2)
25 - MG clock (only for armada-7k-pp2)
26 - MG Core clock (only for armada-7k-pp2)
27 - AXI clock (only for armada-7k-pp2)
29 "mg_core_clk" and "axi_clk" (the 3 latter only for armada-7k-pp2).
38 - gop-port-id: only for marvell,armada-7k-pp2, ID of the port from the
[all …]
/Linux-v6.1/drivers/scsi/
Dfdomain.c12 * TMC-1800, TMC-18C50, TMC-18C30, TMC-36C70
43 * More recently, boards are being produced with the TMC-18C50 and TMC-18C30
56 * "Technical Reference Manual: 18C50 SCSI Host Adapter Chip", Future Domain
73 * TMC-18C30 detection.)
78 * "18C30 Technical Reference Manual", Future Domain Corporation, 1993, page
94 * FIFO_COUNT: The host adapter has an 8K cache (host adapters based on the
95 * 18C30 chip have a 2k cache). When this many 512 byte blocks are filled by
142 case 0x60e9: /* 18c50 or 18c30 */ in fdomain_identify()
148 /* Try to toggle 32-bit mode. This only works on an 18c30 chip. */ in fdomain_identify()
155 /* If that failed, we are an 18c50. */ in fdomain_identify()
[all …]
/Linux-v6.1/tools/perf/Documentation/
Dsecurity.txt32 --- a/policy/flask/access_vectors 2020-02-04 18:19:53.000000000 +0300
59 --- a/policy/flask/security_classes 2020-02-04 18:19:53.000000000 +0300
77 drwxr-xr-x. 2 root root 4.0K Mar 20 12:16 .
78 drwxr-xr-x. 3 root root 4.0K Mar 20 12:16 ..
79 -rw-r--r--. 1 root root 112K Mar 20 12:16 selinux-policy-3.14.4-48.fc31.noarch.rpm
84 -rw-r--r--. 1 root root 111K Mar 20 12:16 selinux-policy-sandbox-3.14.4-48.fc31.noarch.rpm
198 2,629 context-switches # 0.072 K/sec
199 57 cpu-migrations # 0.002 K/sec
200 1 page-faults # 0.000 K/sec
/Linux-v6.1/arch/arm/crypto/
Dsha512-armv4.pl94 @ Sigma1(x) (ROTR((x),14) ^ ROTR((x),18) ^ ROTR((x),41))
95 @ LO lo>>14^hi<<18 ^ lo>>18^hi<<14 ^ hi>>9^lo<<23
96 @ HI hi>>14^lo<<18 ^ hi>>18^lo<<14 ^ lo>>9^hi<<23
101 eor $t0,$t0,$Ehi,lsl#18
103 eor $t1,$t1,$Elo,lsl#18
105 eor $t0,$t0,$Elo,lsr#18
106 eor $t1,$t1,$Ehi,lsr#18
131 ldr $t2,[$Ktbl,#$lo] @ K[i].lo
133 ldr $t3,[$Ktbl,#$hi] @ K[i].hi
141 adc $Thi,$Thi,$t3 @ T += K[i]
[all …]
/Linux-v6.1/drivers/media/v4l2-core/
Dv4l2-vp9.c79 { 45, 18, 32, 130, 90, 157, 40, 79, 91 }, /*left = d207*/
91 { 55, 30, 18, 122, 79, 179, 44, 88, 116 }, /*left = d63 */
112 { 58, 18, 28, 105, 139, 182, 70, 92, 63 }, /*left = d207*/
140 { 52, 18, 18 }, /* a/l both split */
265 { 1, 18, 34 },
325 { 1, 18, 37 },
444 { 18, 90, 144 },
523 { 1, 18, 30 },
539 { 1, 18, 34 },
581 { 1, 18, 32 },
[all …]

12345678910>>...40