/Linux-v4.19/include/uapi/linux/ |
D | keyboard.h | 45 #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-v4.19/crypto/ |
D | wp512.c | 784 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 …]
|
D | des_generic.c | 590 #define ROUND(L, R, A, B, K, d) \ argument 591 B = K[0]; A = K[1]; K += d; \ 806 const u32 *K = ctx->expkey; in des_encrypt() local 817 ROUND(L, R, A, B, K, 2); in des_encrypt() 818 ROUND(R, L, A, B, K, 2); in des_encrypt() 829 const u32 *K = ctx->expkey + DES_EXPKEY_WORDS - 2; in des_decrypt() local 840 ROUND(L, R, A, B, K, -2); in des_decrypt() 841 ROUND(R, L, A, B, K, -2); in des_decrypt() 865 const u32 *K = (const u32 *)key; in __des3_ede_setkey() local 867 if (unlikely(!((K[0] ^ K[2]) | (K[1] ^ K[3])) || in __des3_ede_setkey() [all …]
|
/Linux-v4.19/arch/powerpc/net/ |
D | bpf_jit_comp.c | 110 #define CHOOSE_LOAD_FUNC(K, func) \ argument 111 ((int)K < 0 ? ((int)K >= SKF_LL_OFF ? func##_negative_offset : func) : func##_positive_offset) 128 unsigned int K = filter[i].k; in bpf_jit_build_body() local 144 if (!K) in bpf_jit_build_body() 146 PPC_ADDI(r_A, r_A, IMM_L(K)); in bpf_jit_build_body() 147 if (K >= 32768) in bpf_jit_build_body() 148 PPC_ADDIS(r_A, r_A, IMM_HA(K)); in bpf_jit_build_body() 155 if (!K) in bpf_jit_build_body() 157 PPC_ADDI(r_A, r_A, IMM_L(-K)); in bpf_jit_build_body() 158 if (K >= 32768) in bpf_jit_build_body() [all …]
|
/Linux-v4.19/arch/sparc/net/ |
D | bpf_jit_comp_32.c | 68 #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 …]
|
D | bpf_jit_comp_64.c | 136 #define SETHI(K, REG) \ argument 137 (F2(0, 0x4) | RD(REG) | (((K) >> 10) & 0x3fffff)) 138 #define OR_LO(K, REG) \ argument 139 (F3(2, 0x02) | IMMED | RS1(REG) | ((K) & 0x3ff) | RD(REG)) 267 static void emit_set_const(s32 K, u32 reg, struct jit_ctx *ctx) in emit_set_const() argument 269 emit(SETHI(K, reg), ctx); in emit_set_const() 270 emit(OR_LO(K, reg), ctx); in emit_set_const() 274 static void emit_set_const_sext(s32 K, u32 reg, struct jit_ctx *ctx) in emit_set_const_sext() argument 276 if (K >= 0) { in emit_set_const_sext() 277 emit(SETHI(K, reg), ctx); in emit_set_const_sext() [all …]
|
/Linux-v4.19/drivers/base/ |
D | node.c | 62 #define K(x) ((x) << (PAGE_SHIFT - 10)) macro 84 nid, K(i.totalram), in node_read_meminfo() 85 nid, K(i.freeram), in node_read_meminfo() 86 nid, K(i.totalram - i.freeram), in node_read_meminfo() 87 nid, K(node_page_state(pgdat, NR_ACTIVE_ANON) + in node_read_meminfo() 89 nid, K(node_page_state(pgdat, NR_INACTIVE_ANON) + in node_read_meminfo() 91 nid, K(node_page_state(pgdat, NR_ACTIVE_ANON)), in node_read_meminfo() 92 nid, K(node_page_state(pgdat, NR_INACTIVE_ANON)), in node_read_meminfo() 93 nid, K(node_page_state(pgdat, NR_ACTIVE_FILE)), in node_read_meminfo() 94 nid, K(node_page_state(pgdat, NR_INACTIVE_FILE)), in node_read_meminfo() [all …]
|
/Linux-v4.19/Documentation/networking/ |
D | iphase.txt | 16 - 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-v4.19/arch/sparc/crypto/ |
D | des_glue.c | 73 const u64 *K = ctx->encrypt_expkey; in des_encrypt() local 75 des_sparc64_crypt(K, (const u64 *) src, (u64 *) dst); in des_encrypt() 81 const u64 *K = ctx->decrypt_expkey; in des_decrypt() local 83 des_sparc64_crypt(K, (const u64 *) src, (u64 *) dst); in des_decrypt() 204 const u32 *K = (const u32 *)key; in des3_ede_set_key() local 210 if (unlikely(!((K[0] ^ K[2]) | (K[1] ^ K[3])) || in des3_ede_set_key() 211 !((K[2] ^ K[4]) | (K[3] ^ K[5]))) && in des3_ede_set_key() 243 const u64 *K = ctx->encrypt_expkey; in des3_ede_encrypt() local 245 des3_ede_sparc64_crypt(K, (const u64 *) src, (u64 *) dst); in des3_ede_encrypt() 251 const u64 *K = ctx->decrypt_expkey; in des3_ede_decrypt() local [all …]
|
/Linux-v4.19/arch/mips/kvm/ |
D | 00README.txt | 5 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-v4.19/Documentation/devicetree/bindings/rtc/ |
D | armada-380-rtc.txt | 1 * 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-v4.19/Documentation/misc-devices/ |
D | eeprom | 20 24C01 1K 0x50 (shadows at 0x51 - 0x57) 21 24C01A 1K 0x50 - 0x57 (Typical device on DIMMs) 22 24C02 2K 0x50 - 0x57 23 24C04 4K 0x50, 0x52, 0x54, 0x56 25 24C08 8K 0x50, 0x54 (additional data at 0x51, 0x52, 27 24C16 16K 0x50 (additional data at 0x51 - 0x57) 28 Sony 2K 0x57 30 Atmel 34C02B 2K 0x50 - 0x57, SW write protect at 0x30-37 31 Catalyst 34FC02 2K 0x50 - 0x57, SW write protect at 0x30-37 32 Catalyst 34RC02 2K 0x50 - 0x57, SW write protect at 0x30-37 [all …]
|
/Linux-v4.19/tools/perf/bench/ |
D | mem-functions.c | 28 #define K 1024 macro 99 if (x < K) \ 101 else if (x < K * K) \ 102 printf(" %14lfd KB/sec\n", x / K); \ 103 else if (x < K * K * K) \ 104 printf(" %14lf MB/sec\n", x / K / K); \ 106 printf(" %14lf GB/sec\n", x / K / K / K); \
|
/Linux-v4.19/tools/bpf/ |
D | bpf_dbg.c | 636 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-v4.19/Documentation/ABI/testing/ |
D | sysfs-bus-siox | 3 Contact: Gavin Schenk <g.schenk@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.de> 15 Contact: Gavin Schenk <g.schenk@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.de> 30 Contact: Gavin Schenk <g.schenk@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.de> 36 Contact: Gavin Schenk <g.schenk@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.de> 44 Contact: Gavin Schenk <g.schenk@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.de> 51 Contact: Gavin Schenk <g.schenk@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.de> 57 Contact: Gavin Schenk <g.schenk@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.de> 64 Contact: Gavin Schenk <g.schenk@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.de> 70 Contact: Gavin Schenk <g.schenk@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.de> 78 Contact: Gavin Schenk <g.schenk@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.de> [all …]
|
D | sysfs-block | 33 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-v4.19/drivers/crypto/ccp/ |
D | ccp-crypto-des3.c | 56 const u32 *K = (const u32 *)key; in ccp_des3_setkey() local 58 if (unlikely(!((K[0] ^ K[2]) | (K[1] ^ K[3])) || in ccp_des3_setkey() 59 !((K[2] ^ K[4]) | (K[3] ^ K[5]))) && in ccp_des3_setkey()
|
/Linux-v4.19/Documentation/features/scripts/ |
D | features-refresh.sh | 14 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-v4.19/Documentation/media/v4l-drivers/ |
D | usbvision-cardlist.rst | 92 - Hauppauge WinTV USB (PAL D/K) 108 - Hauppauge WinTV USB (PAL D/K FM) 120 - Hauppauge WinTV USB Pro (PAL/SECAM B/G/I/D/K/L) 140 - Hauppauge WinTV USB Pro (PAL D/K) 156 - Hauppauge WinTV USB Pro (PAL B/G,D/K) 160 - Hauppauge WinTV USB Pro (PAL I,D/K) 176 - Hauppauge WinTV USB Pro (PAL D/K FM) 180 - Hauppauge WinTV USB Pro (Temic PAL/SECAM B/G/I/D/K/L FM) 188 - Hauppauge WinTV USB Pro (PAL/SECAM B/G/I/D/K/L FM)
|
/Linux-v4.19/Documentation/devicetree/bindings/arm/marvell/ |
D | armada-7k-8k.txt | 1 Marvell Armada 7K/8K Platforms Device Tree Bindings 4 Boards using a SoC of the Marvell Armada 7K or 8K families must carry
|
/Linux-v4.19/Documentation/devicetree/bindings/interrupt-controller/ |
D | marvell,armada-8k-pic.txt | 1 Marvell Armada 7K/8K PIC Interrupt controller 5 controller available on the Marvell Armada 7K/8K ARM64 SoCs, and
|
/Linux-v4.19/arch/arm64/crypto/ |
D | sha512-core.S_shipped | 93 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-v4.19/Documentation/hwmon/ |
D | f71805f | 71 in1 VIN1 VTT1.2V 10K - 1.00 1.20 V 72 in2 VIN2 VRAM 100K 100K 2.00 ~1.25 V (1) 73 in3 VIN3 VCHIPSET 47K 100K 1.47 2.24 V (2) 74 in4 VIN4 VCC5V 200K 47K 5.25 0.95 V 75 in5 VIN5 +12V 200K 20K 11.00 1.05 V 76 in6 VIN6 VCC1.5V 10K - 1.00 1.50 V 77 in7 VIN7 VCORE 10K - 1.00 ~1.40 V (1) 78 in8 VIN8 VSB5V 200K 47K 1.00 0.95 V
|
D | vt1211 | 88 +2.5V 2K 10K 1.2 2083 mV 90 +5V 14K 10K 2.4 2083 mV 91 +12V 47K 10K 5.7 2105 mV 92 +3.3V (int) 2K 3.4K 1.588 3300 mV (2) 93 +3.3V (ext) 6.8K 10K 1.68 1964 mV 148 Rth = Ro * exp(B * (1 / T - 1 / To)) (To is 298.15K (25C) and Ro is the
|
/Linux-v4.19/kernel/bpf/ |
D | core.c | 852 INSN_3(ALU, ADD, K), \ 853 INSN_3(ALU, SUB, K), \ 854 INSN_3(ALU, AND, K), \ 855 INSN_3(ALU, OR, K), \ 856 INSN_3(ALU, LSH, K), \ 857 INSN_3(ALU, RSH, K), \ 858 INSN_3(ALU, XOR, K), \ 859 INSN_3(ALU, MUL, K), \ 860 INSN_3(ALU, MOV, K), \ 861 INSN_3(ALU, DIV, K), \ [all …]
|