Home
last modified time | relevance | path

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

12345678910>>...21

/linux/include/uapi/linux/
H A 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/crypto/
H A 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 …]
H A 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/mm/
H A Dshow_mem.c265 K(node_page_state(pgdat, NR_ACTIVE_ANON)), in show_free_areas()
266 K(node_page_state(pgdat, NR_INACTIVE_ANON)), in show_free_areas()
267 K(node_page_state(pgdat, NR_ACTIVE_FILE)), in show_free_areas()
268 K(node_page_state(pgdat, NR_INACTIVE_FILE)), in show_free_areas()
269 K(node_page_state(pgdat, NR_UNEVICTABLE)), in show_free_areas()
270 K(node_page_state(pgdat, NR_ISOLATED_ANON)), in show_free_areas()
271 K(node_page_state(pgdat, NR_ISOLATED_FILE)), in show_free_areas()
272 K(node_page_state(pgdat, NR_FILE_MAPPED)), in show_free_areas()
273 K(node_page_state(pgdat, NR_FILE_DIRTY)), in show_free_areas()
274 K(node_page_stat in show_free_areas()
[all...]
/linux/include/crypto/internal/
H A Ddes.h59 u32 K[6]; in des3_ede_verify_key() local
61 memcpy(K, key, DES3_EDE_KEY_SIZE); in des3_ede_verify_key()
63 if ((!((K[0] ^ K[2]) | (K[1] ^ K[3])) || in des3_ede_verify_key()
64 !((K[2] ^ K[4]) | (K[3] ^ K[5]))) && in des3_ede_verify_key()
68 if ((!((K[0] ^ K[4]) | (K[1] ^ K[5]))) && fips_enabled) in des3_ede_verify_key()
73 memzero_explicit(K, DES3_EDE_KEY_SIZE); in des3_ede_verify_key()
/linux/arch/sparc/net/
H A 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/Documentation/arch/powerpc/
H A Dvmemmap_dedup.rst11 with a 64K page size, only the devdax namespace with 1G alignment uses vmemmap
14 With 2M PMD level mapping, we require 32 struct pages and a single 64K vmemmap
15 page can contain 1024 struct pages (64K/sizeof(struct page)). Hence there is no
18 With 1G PUD level mapping, we require 16384 struct pages and a single 64K
19 vmemmap page can contain 1024 struct pages (64K/sizeof(struct page)). Hence we
20 require 16 64K pages in vmemmap to map the struct page for 1G PUD level mapping.
46 With 4K page size, 2M PMD level mapping requires 512 struct pages and a single
47 4K vmemmap page contains 64 struct pages(4K/sizeof(struct page)). Hence we
48 require 8 4K pages in vmemmap to map the struct page for 2M pmd level mapping.
74 With 1G PUD level mapping, we require 262144 struct pages and a single 4K
[all …]
/linux/Documentation/networking/device_drivers/atm/
H A Diphase.rst24 - Supports 4K VCs for the server board (with 512K control memory) and 1K
25 VCs for the client board (with 128K control memory).
31 including x575 (OC3, control memory 128K , 512K and packet memory 128K,
32 512K and 1M), x525 (UTP25) and x531 (DS3 and E3). See
93 The (i)Chip boards have 3 different packet RAM size variants: 128K, 512K and
101 128K 64K 64K 10K 10K 6 6
102 512K 256K 256K 10K 10K 25 25
103 1M 512K 512K 10K 10K 51 51
115 - RX_SIZE = size of receive buffers in the range (48-64K)
117 - TX_SIZE = size of transmit buffers in the range (48-64K)
/linux/drivers/base/
H A Dnode.c369 #define K(x) ((x) << (PAGE_SHIFT - 10)) macro
399 nid, K(i.totalram), in node_read_meminfo()
400 nid, K(i.freeram), in node_read_meminfo()
401 nid, K(i.totalram - i.freeram), in node_read_meminfo()
402 nid, K(swapcached), in node_read_meminfo()
403 nid, K(node_page_state(pgdat, NR_ACTIVE_ANON) + in node_read_meminfo()
405 nid, K(node_page_state(pgdat, NR_INACTIVE_ANON) + in node_read_meminfo()
407 nid, K(node_page_state(pgdat, NR_ACTIVE_ANON)), in node_read_meminfo()
408 nid, K(node_page_state(pgdat, NR_INACTIVE_ANON)), in node_read_meminfo()
409 nid, K(node_page_state(pgdat, NR_ACTIVE_FILE)), in node_read_meminfo()
[all …]
/linux/arch/arm64/include/asm/
H A Datomic_ll_sc.h16 #define K macro
106 ATOMIC_OPS(and, and, K) in ATOMIC_OPS()
107 ATOMIC_OPS(or, orr, K) in ATOMIC_OPS()
108 ATOMIC_OPS(xor, eor, K) in ATOMIC_OPS()
278 __CMPXCHG_CASE(w, b, , 8, , , , , K)
279 __CMPXCHG_CASE(w, h, , 16, , , , , K)
280 __CMPXCHG_CASE(w, , , 32, , , , , K)
282 __CMPXCHG_CASE(w, b, acq_, 8, , a, , "memory", K)
283 __CMPXCHG_CASE(w, h, acq_, 16, , a, , "memory", K)
284 __CMPXCHG_CASE(w, , acq_, 32, , a, , "memory", K)
[all …]
/linux/Documentation/admin-guide/media/
H A Ddvb_intro.rst151 TRANSMISSION_MODE = 8K
179 TRANSMISSION_MODE = 8K
194 TRANSMISSION_MODE = 8K
209 TRANSMISSION_MODE = 8K
224 TRANSMISSION_MODE = 8K
239 TRANSMISSION_MODE = 8K
254 TRANSMISSION_MODE = 8K
269 TRANSMISSION_MODE = 8K
284 TRANSMISSION_MODE = 8K
299 TRANSMISSION_MODE = 8K
[all …]
/linux/Documentation/ABI/testing/
H A Dsysfs-kernel-mm-damon21 What: /sys/kernel/mm/damon/admin/kdamonds/<K>/state
41 What: /sys/kernel/mm/damon/admin/kdamonds/<K>/pid
47 What: /sys/kernel/mm/damon/admin/kdamonds/<K>/contexts/nr_contexts
54 What: /sys/kernel/mm/damon/admin/kdamonds/<K>/contexts/<C>/avail_operations
60 What: /sys/kernel/mm/damon/admin/kdamonds/<K>/contexts/<C>/operations
73 What: /sys/kernel/mm/damon/admin/kdamonds/<K>/contexts/<C>/monitoring_attrs/intervals/sample_us
80 What: /sys/kernel/mm/damon/admin/kdamonds/<K>/contexts/<C>/monitoring_attrs/intervals/aggr_us
87 What: /sys/kernel/mm/damon/admin/kdamonds/<K>/contexts/<C>/monitoring_attrs/intervals/update_us
94 What: /sys/kernel/mm/damon/admin/kdamonds/<K>/contexts/<C>/monitoring_attrs/nr_regions/min
102 What: /sys/kernel/mm/damon/admin/kdamonds/<K>/context
[all...]
H A Dsysfs-bus-siox3 Contact: Thorsten Scherer <t.scherer@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.d…
16 Contact: Thorsten Scherer <t.scherer@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.d…
33 Contact: Thorsten Scherer <t.scherer@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.d…
39 Contact: Thorsten Scherer <t.scherer@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.d…
47 Contact: Thorsten Scherer <t.scherer@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.d…
54 Contact: Thorsten Scherer <t.scherer@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.d…
60 Contact: Thorsten Scherer <t.scherer@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.d…
67 Contact: Thorsten Scherer <t.scherer@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.d…
73 Contact: Thorsten Scherer <t.scherer@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.d…
81 Contact: Thorsten Scherer <t.scherer@eckelmann.de>, Uwe Kleine-König <u.kleine-koenig@pengutronix.d…
[all …]
/linux/arch/sparc/crypto/
H A Ddes_glue.c77 const u64 *K = ctx->encrypt_expkey; in sparc_des_encrypt() local
79 des_sparc64_crypt(K, (const u64 *) src, (u64 *) dst); in sparc_des_encrypt()
85 const u64 *K = ctx->decrypt_expkey; in sparc_des_decrypt() local
87 des_sparc64_crypt(K, (const u64 *) src, (u64 *) dst); in sparc_des_decrypt()
226 const u64 *K = ctx->encrypt_expkey; in sparc_des3_ede_encrypt() local
228 des3_ede_sparc64_crypt(K, (const u64 *) src, (u64 *) dst); in sparc_des3_ede_encrypt()
234 const u64 *K = ctx->decrypt_expkey; in sparc_des3_ede_decrypt() local
236 des3_ede_sparc64_crypt(K, (const u64 *) src, (u64 *) dst); in sparc_des3_ede_decrypt()
249 const u64 *K; in __ecb3_crypt() local
258 K = &ctx->encrypt_expkey[0]; in __ecb3_crypt()
[all …]
/linux/tools/perf/bench/
H A 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/tools/bpf/
H A 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/lib/crypto/
H A 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/Documentation/translations/zh_CN/arch/arm64/
H A Dhugetlbpage.rst42 4K: 64K 2M 32M 1G
43 16K: 2M 32M 1G
44 64K: 2M 512M 16G
/linux/Documentation/translations/zh_TW/arch/arm64/
H A Dhugetlbpage.rst45 4K: 64K 2M 32M 1G
46 16K: 2M 32M 1G
47 64K: 2M 512M 16G
/linux/Documentation/features/scripts/
H A 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/tools/testing/kunit/test_data/
H A Dtest_is_test_passed-no_tests_run_no_header.log14 Memory: 27868K/56932K available (1681K kernel code, 480K rwdata, 400K rodata, 89K init, 205K bss, 2…
H A Dtest_output_isolated_correctly.log6 Memory: 254468K/283500K available (1734K kernel code, 489K rwdata, 396K rodata, 85K init, 216K bss,…
/linux/Documentation/devicetree/bindings/interrupt-controller/
H A 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/Documentation/hwmon/
H A 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/arch/arm64/boot/dts/mediatek/
H A Dmt7986a-rfb.dts133 bias-pull-up = <MTK_PUPD_SET_R1R0_01>; /* pull-up 10K */
138 bias-pull-down = <MTK_PUPD_SET_R1R0_10>; /* pull-down 50K */
142 bias-pull-down = <MTK_PUPD_SET_R1R0_10>; /* pull-down 50K */
147 bias-pull-up = <MTK_PUPD_SET_R1R0_01>; /* pull-up 10K */
162 bias-pull-up = <MTK_PUPD_SET_R1R0_01>; /* pull-up 10K */
167 bias-pull-down = <MTK_PUPD_SET_R1R0_10>; /* pull-down 50K */
171 bias-pull-down = <MTK_PUPD_SET_R1R0_10>; /* pull-down 50K */
176 bias-pull-up = <MTK_PUPD_SET_R1R0_01>; /* pull-up 10K */

12345678910>>...21