Home
last modified time | relevance | path

Searched refs:K (Results 1 – 25 of 432) sorted by relevance

12345678910>>...18

/Linux-v5.4/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-v5.4/crypto/
Dwp512.c784 u64 K[8]; /* the round key */ in wp512_process_buffer() local
793 state[0] = block[0] ^ (K[0] = wctx->hash[0]); in wp512_process_buffer()
794 state[1] = block[1] ^ (K[1] = wctx->hash[1]); in wp512_process_buffer()
795 state[2] = block[2] ^ (K[2] = wctx->hash[2]); in wp512_process_buffer()
796 state[3] = block[3] ^ (K[3] = wctx->hash[3]); in wp512_process_buffer()
797 state[4] = block[4] ^ (K[4] = wctx->hash[4]); in wp512_process_buffer()
798 state[5] = block[5] ^ (K[5] = wctx->hash[5]); in wp512_process_buffer()
799 state[6] = block[6] ^ (K[6] = wctx->hash[6]); in wp512_process_buffer()
800 state[7] = block[7] ^ (K[7] = wctx->hash[7]); in wp512_process_buffer()
804 L[0] = C0[(int)(K[0] >> 56) ] ^ in wp512_process_buffer()
[all …]
/Linux-v5.4/arch/powerpc/net/
Dbpf_jit_comp.c106 #define CHOOSE_LOAD_FUNC(K, func) \ argument
107 ((int)K < 0 ? ((int)K >= SKF_LL_OFF ? func##_negative_offset : func) : func##_positive_offset)
124 unsigned int K = filter[i].k; in bpf_jit_build_body() local
140 if (!K) in bpf_jit_build_body()
142 PPC_ADDI(r_A, r_A, IMM_L(K)); in bpf_jit_build_body()
143 if (K >= 32768) in bpf_jit_build_body()
144 PPC_ADDIS(r_A, r_A, IMM_HA(K)); in bpf_jit_build_body()
151 if (!K) in bpf_jit_build_body()
153 PPC_ADDI(r_A, r_A, IMM_L(-K)); in bpf_jit_build_body()
154 if (K >= 32768) in bpf_jit_build_body()
[all …]
/Linux-v5.4/include/crypto/internal/
Ddes.h63 u32 K[6]; in des3_ede_verify_key() local
65 memcpy(K, key, DES3_EDE_KEY_SIZE); in des3_ede_verify_key()
67 if ((!((K[0] ^ K[2]) | (K[1] ^ K[3])) || in des3_ede_verify_key()
68 !((K[2] ^ K[4]) | (K[3] ^ K[5]))) && in des3_ede_verify_key()
72 if ((!((K[0] ^ K[4]) | (K[1] ^ K[5]))) && fips_enabled) in des3_ede_verify_key()
77 memzero_explicit(K, DES3_EDE_KEY_SIZE); in des3_ede_verify_key()
/Linux-v5.4/arch/sparc/net/
Dbpf_jit_comp_32.c68 #define SETHI(K, REG) \ argument
69 (F2(0, 0x4) | RD(REG) | (((K) >> 10) & 0x3fffff))
70 #define OR_LO(K, REG) \ argument
71 (F3(2, 0x02) | IMMED | RS1(REG) | ((K) & 0x3ff) | RD(REG))
126 #define emit_set_const(K, REG) \ argument
128 *prog++ = SETHI(K, REG); \
130 *prog++ = OR_LO(K, REG); \
157 #define emit_alu_K(OPCODE, K) \ argument
159 if (K || OPCODE == AND || OPCODE == MUL) { \
162 if (is_simm13(K)) { \
[all …]
/Linux-v5.4/Documentation/networking/
Diphase.txt16 - Supports 4K VCs for the server board (with 512K control memory) and 1K
17 VCs for the client board (with 128K control memory).
23 including x575 (OC3, control memory 128K , 512K and packet memory 128K,
24 512K and 1M), x525 (UTP25) and x531 (DS3 and E3). See
80 The (i)Chip boards have 3 different packet RAM size variants: 128K, 512K and
87 128K 64K 64K 10K 10K 6 6
88 512K 256K 256K 10K 10K 25 25
89 1M 512K 512K 10K 10K 51 51
98 RX_SIZE = size of receive buffers in the range (48-64K)
100 TX_SIZE = size of transmit buffers in the range (48-64K)
/Linux-v5.4/arch/arm64/include/asm/
Datomic_ll_sc.h29 #define K macro
122 ATOMIC_OPS(and, and, K) in ATOMIC_OPS()
123 ATOMIC_OPS(or, orr, K) in ATOMIC_OPS()
124 ATOMIC_OPS(xor, eor, K) in ATOMIC_OPS()
299 __CMPXCHG_CASE(w, b, , 8, , , , , K)
300 __CMPXCHG_CASE(w, h, , 16, , , , , K)
301 __CMPXCHG_CASE(w, , , 32, , , , , K)
303 __CMPXCHG_CASE(w, b, acq_, 8, , a, , "memory", K)
304 __CMPXCHG_CASE(w, h, acq_, 16, , a, , "memory", K)
305 __CMPXCHG_CASE(w, , acq_, 32, , a, , "memory", K)
[all …]
/Linux-v5.4/drivers/base/
Dnode.c360 #define K(x) ((x) << (PAGE_SHIFT - 10)) macro
385 nid, K(i.totalram), in node_read_meminfo()
386 nid, K(i.freeram), in node_read_meminfo()
387 nid, K(i.totalram - i.freeram), in node_read_meminfo()
388 nid, K(node_page_state(pgdat, NR_ACTIVE_ANON) + in node_read_meminfo()
390 nid, K(node_page_state(pgdat, NR_INACTIVE_ANON) + in node_read_meminfo()
392 nid, K(node_page_state(pgdat, NR_ACTIVE_ANON)), in node_read_meminfo()
393 nid, K(node_page_state(pgdat, NR_INACTIVE_ANON)), in node_read_meminfo()
394 nid, K(node_page_state(pgdat, NR_ACTIVE_FILE)), in node_read_meminfo()
395 nid, K(node_page_state(pgdat, NR_INACTIVE_FILE)), in node_read_meminfo()
[all …]
/Linux-v5.4/arch/mips/kvm/
D00README.txt5 Malta Board with FPGA based 34K
6 Sigma Designs TangoX board with a 24K based 8654 SoC.
7 Malta Board with 74K @ 1GHz
16 (2) 16K Page Sizes: Both Host Kernel and Guest Kernel should have the same page size, currently at …
17 Note that due to cache aliasing issues, 4K page sizes are NOT supported.
20 Both the host kernel and Guest kernel should have the page size set to 16K.
30 Currently KVM/MIPS emulates a 24K CPU without a FPU.
/Linux-v5.4/arch/sparc/crypto/
Ddes_glue.c70 const u64 *K = ctx->encrypt_expkey; in sparc_des_encrypt() local
72 des_sparc64_crypt(K, (const u64 *) src, (u64 *) dst); in sparc_des_encrypt()
78 const u64 *K = ctx->decrypt_expkey; in sparc_des_decrypt() local
80 des_sparc64_crypt(K, (const u64 *) src, (u64 *) dst); in sparc_des_decrypt()
236 const u64 *K = ctx->encrypt_expkey; in sparc_des3_ede_encrypt() local
238 des3_ede_sparc64_crypt(K, (const u64 *) src, (u64 *) dst); in sparc_des3_ede_encrypt()
244 const u64 *K = ctx->decrypt_expkey; in sparc_des3_ede_decrypt() local
246 des3_ede_sparc64_crypt(K, (const u64 *) src, (u64 *) dst); in sparc_des3_ede_decrypt()
260 const u64 *K; in __ecb3_crypt() local
268 K = &ctx->encrypt_expkey[0]; in __ecb3_crypt()
[all …]
/Linux-v5.4/Documentation/devicetree/bindings/rtc/
Darmada-380-rtc.txt1 * Real Time Clock of the Armada 38x/7K/8K SoCs
3 RTC controller for the Armada 38x, 7K and 8K SoCs
8 "marvell,armada-8k-rtc" for Aramda 7K/8K SoCs
/Linux-v5.4/tools/perf/bench/
Dmem-functions.c29 #define K 1024 macro
100 if (x < K) \
102 else if (x < K * K) \
103 printf(" %14lfd KB/sec\n", x / K); \
104 else if (x < K * K * K) \
105 printf(" %14lf MB/sec\n", x / K / K); \
107 printf(" %14lf GB/sec\n", x / K / K / K); \
/Linux-v5.4/Documentation/misc-devices/
Deeprom.rst28 24C01 1K 0x50 (shadows at 0x51 - 0x57)
29 24C01A 1K 0x50 - 0x57 (Typical device on DIMMs)
30 24C02 2K 0x50 - 0x57
31 24C04 4K 0x50, 0x52, 0x54, 0x56
33 24C08 8K 0x50, 0x54 (additional data at 0x51, 0x52,
35 24C16 16K 0x50 (additional data at 0x51 - 0x57)
36 Sony 2K 0x57
38 Atmel 34C02B 2K 0x50 - 0x57, SW write protect at 0x30-37
39 Catalyst 34FC02 2K 0x50 - 0x57, SW write protect at 0x30-37
40 Catalyst 34RC02 2K 0x50 - 0x57, SW write protect at 0x30-37
[all …]
/Linux-v5.4/tools/bpf/
Dbpf_dbg.c636 uint32_t K = f->k; in bpf_single_step() local
641 r->R = K; in bpf_single_step()
659 r->M[K] = r->A; in bpf_single_step()
662 r->M[K] = r->X; in bpf_single_step()
665 d = pkt_caplen - K; in bpf_single_step()
667 r->A = extract_u32(pkt, K); in bpf_single_step()
672 d = pkt_caplen - K; in bpf_single_step()
674 r->A = extract_u16(pkt, K); in bpf_single_step()
679 d = pkt_caplen - K; in bpf_single_step()
681 r->A = extract_u8(pkt, K); in bpf_single_step()
[all …]
/Linux-v5.4/Documentation/ABI/testing/
Dsysfs-bus-siox3 Contact: Thorsten Scherer <t.scherer@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.d…
15 Contact: Thorsten Scherer <t.scherer@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.d…
30 Contact: Thorsten Scherer <t.scherer@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.d…
36 Contact: Thorsten Scherer <t.scherer@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.d…
44 Contact: Thorsten Scherer <t.scherer@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.d…
51 Contact: Thorsten Scherer <t.scherer@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.d…
57 Contact: Thorsten Scherer <t.scherer@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.d…
64 Contact: Thorsten Scherer <t.scherer@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.d…
70 Contact: Thorsten Scherer <t.scherer@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.d…
78 Contact: Thorsten Scherer <t.scherer@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.d…
[all …]
Dsysfs-block33 Contact: Martin K. Petersen <martin.petersen@oracle.com>
41 Contact: Martin K. Petersen <martin.petersen@oracle.com>
50 Contact: Martin K. Petersen <martin.petersen@oracle.com>
58 Contact: Martin K. Petersen <martin.petersen@oracle.com>
65 Contact: Martin K. Petersen <martin.petersen@oracle.com>
73 Contact: Martin K. Petersen <martin.petersen@oracle.com>
81 Contact: Martin K. Petersen <martin.petersen@oracle.com>
92 Contact: Martin K. Petersen <martin.petersen@oracle.com>
103 Contact: Martin K. Petersen <martin.petersen@oracle.com>
110 Contact: Martin K. Petersen <martin.petersen@oracle.com>
[all …]
/Linux-v5.4/lib/crypto/
Ddes.c582 #define ROUND(L, R, A, B, K, d) \ argument
583 B = K[0]; A = K[1]; K += d; \
783 const u32 *K = ctx->expkey; in des_encrypt() local
792 ROUND(L, R, A, B, K, 2); in des_encrypt()
793 ROUND(R, L, A, B, K, 2); in des_encrypt()
804 const u32 *K = ctx->expkey + DES_EXPKEY_WORDS - 2; in des_decrypt() local
813 ROUND(L, R, A, B, K, -2); in des_decrypt()
814 ROUND(R, L, A, B, K, -2); in des_decrypt()
846 const u32 *K = dctx->expkey; in des3_ede_encrypt() local
855 ROUND(L, R, A, B, K, 2); in des3_ede_encrypt()
[all …]
/Linux-v5.4/Documentation/features/scripts/
Dfeatures-refresh.sh14 K=$F
17 K=$(echo $F | sed -e 's/^!//g')
47 K_GREP=$(grep "$K" $K_FILES)
65 K_GREP=$(grep "$K" $K_FILES)
/Linux-v5.4/Documentation/media/v4l-drivers/
Dusbvision-cardlist.rst94 - Hauppauge WinTV USB (PAL D/K)
110 - Hauppauge WinTV USB (PAL D/K FM)
122 - Hauppauge WinTV USB Pro (PAL/SECAM B/G/I/D/K/L)
142 - Hauppauge WinTV USB Pro (PAL D/K)
158 - Hauppauge WinTV USB Pro (PAL B/G,D/K)
162 - Hauppauge WinTV USB Pro (PAL I,D/K)
178 - Hauppauge WinTV USB Pro (PAL D/K FM)
182 - Hauppauge WinTV USB Pro (Temic PAL/SECAM B/G/I/D/K/L FM)
190 - Hauppauge WinTV USB Pro (PAL/SECAM B/G/I/D/K/L FM)
/Linux-v5.4/Documentation/devicetree/bindings/interrupt-controller/
Dmarvell,armada-8k-pic.txt1 Marvell Armada 7K/8K PIC Interrupt controller
5 controller available on the Marvell Armada 7K/8K ARM64 SoCs, and
/Linux-v5.4/Documentation/devicetree/bindings/arm/marvell/
Darmada-7k-8k.txt1 Marvell Armada 7K/8K Platforms Device Tree Bindings
4 Boards using a SoC of the Marvell Armada 7K or 8K families must carry
/Linux-v5.4/kernel/bpf/
Dcore.c1155 INSN_3(ALU, ADD, K), \
1156 INSN_3(ALU, SUB, K), \
1157 INSN_3(ALU, AND, K), \
1158 INSN_3(ALU, OR, K), \
1159 INSN_3(ALU, LSH, K), \
1160 INSN_3(ALU, RSH, K), \
1161 INSN_3(ALU, XOR, K), \
1162 INSN_3(ALU, MUL, K), \
1163 INSN_3(ALU, MOV, K), \
1164 INSN_3(ALU, ARSH, K), \
[all …]
/Linux-v5.4/arch/arm64/crypto/
Dsha512-core.S_shipped93 ldr x19,[x30],#8 // *K++
100 add x27,x27,x19 // h+=K[i]
117 ldr x28,[x30],#8 // *K++, x19 in next round
125 add x26,x26,x28 // h+=K[i]
142 ldr x19,[x30],#8 // *K++, x28 in next round
149 add x25,x25,x19 // h+=K[i]
166 ldr x28,[x30],#8 // *K++, x19 in next round
174 add x24,x24,x28 // h+=K[i]
191 ldr x19,[x30],#8 // *K++, x28 in next round
198 add x23,x23,x19 // h+=K[i]
[all …]
/Linux-v5.4/Documentation/hwmon/
Df71805f.rst84 in1 VIN1 VTT1.2V 10K - 1.00 1.20 V
85 in2 VIN2 VRAM 100K 100K 2.00 ~1.25 V [1]_
86 in3 VIN3 VCHIPSET 47K 100K 1.47 2.24 V [2]_
87 in4 VIN4 VCC5V 200K 47K 5.25 0.95 V
88 in5 VIN5 +12V 200K 20K 11.00 1.05 V
89 in6 VIN6 VCC1.5V 10K - 1.00 1.50 V
90 in7 VIN7 VCORE 10K - 1.00 ~1.40 V [1]_
91 in8 VIN8 VSB5V 200K 47K 1.00 0.95 V
/Linux-v5.4/arch/arc/include/asm/
Dentry-arcv2.h53 ; 2. STATUS32.Z flag set if in U mode at time of interrupt (U:1,K:0)
78 ; 2. STATUS32.Z flag set if in U mode at time of exception (U:1,K:0)
145 ; - K mode: add the offset from current SP where H/w starts auto push
155 add.nz r10, r10, SZ_PT_REGS ; K mode SP
179 ; - for K mode, it will be implicitly restored as stack is unwound
180 ; - Z flag set on K is inverse of what hardware does on interrupt entry
222 ; INPUT: Z flag set if returning to K mode
242 btst r0, STATUS_U_BIT ; Z flag set if K, used in restoring SP

12345678910>>...18