/linux-4.1.27/include/uapi/linux/ |
D | keyboard.h | 44 #define K(t,v) (((t)<<8)|(v)) macro 48 #define K_F1 K(KT_FN,0) 49 #define K_F2 K(KT_FN,1) 50 #define K_F3 K(KT_FN,2) 51 #define K_F4 K(KT_FN,3) 52 #define K_F5 K(KT_FN,4) 53 #define K_F6 K(KT_FN,5) 54 #define K_F7 K(KT_FN,6) 55 #define K_F8 K(KT_FN,7) 56 #define K_F9 K(KT_FN,8) [all …]
|
/linux-4.1.27/fs/proc/ |
D | meminfo.c | 42 #define K(x) ((x) << (PAGE_SHIFT - 10)) in meminfo_proc_show() macro 149 K(i.totalram), in meminfo_proc_show() 150 K(i.freeram), in meminfo_proc_show() 151 K(available), in meminfo_proc_show() 152 K(i.bufferram), in meminfo_proc_show() 153 K(cached), in meminfo_proc_show() 154 K(total_swapcache_pages()), in meminfo_proc_show() 155 K(pages[LRU_ACTIVE_ANON] + pages[LRU_ACTIVE_FILE]), in meminfo_proc_show() 156 K(pages[LRU_INACTIVE_ANON] + pages[LRU_INACTIVE_FILE]), in meminfo_proc_show() 157 K(pages[LRU_ACTIVE_ANON]), in meminfo_proc_show() [all …]
|
/linux-4.1.27/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 …]
|
D | serpent_generic.c | 45 #define K(x0, x1, x2, x3, i) ({ \ macro 462 K(r0, r1, r2, r3, 0); in __serpent_encrypt() 494 S7(r3, r4, r1, r2, r0); K(r0, r1, r2, r3, 32); in __serpent_encrypt() 522 K(r0, r1, r2, r3, 32); in __serpent_decrypt() 554 SI0(r4, r1, r2, r0, r3); K(r2, r3, r1, r4, 0); in __serpent_decrypt()
|
/linux-4.1.27/arch/powerpc/net/ |
D | bpf_jit_comp.c | 111 #define CHOOSE_LOAD_FUNC(K, func) \ argument 112 ((int)K < 0 ? ((int)K >= SKF_LL_OFF ? func##_negative_offset : func) : func##_positive_offset) 129 unsigned int K = filter[i].k; in bpf_jit_build_body() local 145 if (!K) in bpf_jit_build_body() 147 PPC_ADDI(r_A, r_A, IMM_L(K)); in bpf_jit_build_body() 148 if (K >= 32768) in bpf_jit_build_body() 149 PPC_ADDIS(r_A, r_A, IMM_HA(K)); in bpf_jit_build_body() 156 if (!K) in bpf_jit_build_body() 158 PPC_ADDI(r_A, r_A, IMM_L(-K)); in bpf_jit_build_body() 159 if (K >= 32768) in bpf_jit_build_body() [all …]
|
/linux-4.1.27/arch/sparc/net/ |
D | bpf_jit_comp.c | 91 #define SETHI(K, REG) \ argument 92 (F2(0, 0x4) | RD(REG) | (((K) >> 10) & 0x3fffff)) 93 #define OR_LO(K, REG) \ argument 94 (F3(2, 0x02) | IMMED | RS1(REG) | ((K) & 0x3ff) | RD(REG)) 154 #define emit_set_const(K, REG) \ argument 156 *prog++ = SETHI(K, REG); \ 158 *prog++ = OR_LO(K, REG); \ 185 #define emit_alu_K(OPCODE, K) \ argument 187 if (K || OPCODE == AND || OPCODE == MUL) { \ 190 if (is_simm13(K)) { \ [all …]
|
/linux-4.1.27/drivers/base/ |
D | node.c | 53 #define K(x) ((x) << (PAGE_SHIFT - 10)) macro 74 nid, K(i.totalram), in node_read_meminfo() 75 nid, K(i.freeram), in node_read_meminfo() 76 nid, K(i.totalram - i.freeram), in node_read_meminfo() 77 nid, K(node_page_state(nid, NR_ACTIVE_ANON) + in node_read_meminfo() 79 nid, K(node_page_state(nid, NR_INACTIVE_ANON) + in node_read_meminfo() 81 nid, K(node_page_state(nid, NR_ACTIVE_ANON)), in node_read_meminfo() 82 nid, K(node_page_state(nid, NR_INACTIVE_ANON)), in node_read_meminfo() 83 nid, K(node_page_state(nid, NR_ACTIVE_FILE)), in node_read_meminfo() 84 nid, K(node_page_state(nid, NR_INACTIVE_FILE)), in node_read_meminfo() [all …]
|
/linux-4.1.27/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)
|
D | s2io.txt | 78 Size of each receive ring(in 4K blocks) 91 For instance, for MTU=1500 a value of 210K has been observed to result in 105 Set MMRBC to 4K**. 117 c. Turn on TSO(using "ethtool -K") 118 # ethtool -K <ethX> tso on 127 c. Ensure Receive Checksum offload is enabled. Use "ethtool -K ethX" command to
|
D | arcnet-hardware.txt | 68 splitting," that allows "virtual packets" to grow as large as 64K each, 640 The memory buffer requires 2K of a 16K block of RAM. The base of this 641 16K block can be located in any of eight positions. 642 Switches 4-6 of switch group S1 select the Base of the 16K block. 643 Within that 16K address space, the buffer may be assigned any one of four 689 *) To enable the 8K Boot PROM install the jumper ROM. 1397 The memory buffer (RAM) requires 2K. The base of this buffer can be 1399 memory base + 8K or memory base + 0x2000. 1417 that they can be used to add an offset of 2K, 4K or 6K to the base 1610 Base address of the RAM (2K) and the PROM. [all …]
|
/linux-4.1.27/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-4.1.27/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-4.1.27/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-4.1.27/tools/net/ |
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-4.1.27/tools/perf/bench/ |
D | mem-memcpy.c | 24 #define K 1024 macro 121 if (x < K) \ 123 else if (x < K * K) \ 124 printf(" %14lfd KB/Sec", x / K); \ 125 else if (x < K * K * K) \ 126 printf(" %14lf MB/Sec", x / K / K); \ 128 printf(" %14lf GB/Sec", x / K / K / K); \
|
/linux-4.1.27/Documentation/video4linux/ |
D | CARDLIST.usbvision | 20 19 -> Hauppauge WinTV USB (PAL D/K) [0573:4d04] 24 23 -> Hauppauge WinTV USB (PAL D/K FM) [0573:4d14] 27 26 -> Hauppauge WinTV USB Pro (PAL/SECAM B/G/I/D/K/L) [0573:4d2c] 32 31 -> Hauppauge WinTV USB Pro (PAL D/K) [0573:4d24] 36 35 -> Hauppauge WinTV USB Pro (PAL B/G,D/K) [0573:4d28] 37 36 -> Hauppauge WinTV USB Pro (PAL I,D/K) [0573:4d29] 41 40 -> Hauppauge WinTV USB Pro (PAL D/K FM) [0573:4d34] 42 41 -> Hauppauge WinTV USB Pro (Temic PAL/SECAM B/G/I/D/K/L FM) [0573:4d35] 44 43 -> Hauppauge WinTV USB Pro (PAL/SECAM B/G/I/D/K/L FM) [0573:4d37]
|
D | gspca.txt | 174 sunplus 055f:c230 Mustek Digicam 330K 316 sonixj 0c45:6040 Speed NVC 350K 384 spca501 1776:501c Arowana 300K CMOS Camera
|
/linux-4.1.27/Documentation/ABI/testing/ |
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> 66 Contact: Martin K. Petersen <martin.petersen@oracle.com> 74 Contact: Martin K. Petersen <martin.petersen@oracle.com> 85 Contact: Martin K. Petersen <martin.petersen@oracle.com> 96 Contact: Martin K. Petersen <martin.petersen@oracle.com> 103 Contact: Martin K. Petersen <martin.petersen@oracle.com> 115 Contact: Martin K. Petersen <martin.petersen@oracle.com> [all …]
|
D | sysfs-bus-pci | 176 Contact: Narendra K <narendra_k@dell.com>, linux-bugs@dell.com 190 Contact: Narendra K <narendra_k@dell.com>, linux-bugs@dell.com 204 Contact: Narendra K <narendra_k@dell.com>, linux-bugs@dell.com
|
/linux-4.1.27/mm/ |
D | backing-dev.c | 71 #define K(x) ((x) << (PAGE_SHIFT - 10)) in bdi_debug_stats_show() macro 87 (unsigned long) K(bdi_stat(bdi, BDI_WRITEBACK)), in bdi_debug_stats_show() 88 (unsigned long) K(bdi_stat(bdi, BDI_RECLAIMABLE)), in bdi_debug_stats_show() 89 K(bdi_thresh), in bdi_debug_stats_show() 90 K(dirty_thresh), in bdi_debug_stats_show() 91 K(background_thresh), in bdi_debug_stats_show() 92 (unsigned long) K(bdi_stat(bdi, BDI_DIRTIED)), in bdi_debug_stats_show() 93 (unsigned long) K(bdi_stat(bdi, BDI_WRITTEN)), in bdi_debug_stats_show() 94 (unsigned long) K(bdi->write_bandwidth), in bdi_debug_stats_show() 100 #undef K in bdi_debug_stats_show() [all …]
|
D | oom_kill.c | 496 #define K(x) ((x) << (PAGE_SHIFT-10)) macro 577 task_pid_nr(victim), victim->comm, K(victim->mm->total_vm), in oom_kill_process() 578 K(get_mm_counter(victim->mm, MM_ANONPAGES)), in oom_kill_process() 579 K(get_mm_counter(victim->mm, MM_FILEPAGES))); in oom_kill_process() 609 #undef K
|
D | page_alloc.c | 3240 #define K(x) ((x) << (PAGE_SHIFT-10)) macro 3362 K(zone_page_state(zone, NR_FREE_PAGES)), in show_free_areas() 3363 K(min_wmark_pages(zone)), in show_free_areas() 3364 K(low_wmark_pages(zone)), in show_free_areas() 3365 K(high_wmark_pages(zone)), in show_free_areas() 3366 K(zone_page_state(zone, NR_ACTIVE_ANON)), in show_free_areas() 3367 K(zone_page_state(zone, NR_INACTIVE_ANON)), in show_free_areas() 3368 K(zone_page_state(zone, NR_ACTIVE_FILE)), in show_free_areas() 3369 K(zone_page_state(zone, NR_INACTIVE_FILE)), in show_free_areas() 3370 K(zone_page_state(zone, NR_UNEVICTABLE)), in show_free_areas() [all …]
|
D | memcontrol.c | 1430 #define K(x) ((x) << (PAGE_SHIFT-10)) macro 1463 K((u64)page_counter_read(&memcg->memory)), in mem_cgroup_print_oom_info() 1464 K((u64)memcg->memory.limit), memcg->memory.failcnt); in mem_cgroup_print_oom_info() 1466 K((u64)page_counter_read(&memcg->memsw)), in mem_cgroup_print_oom_info() 1467 K((u64)memcg->memsw.limit), memcg->memsw.failcnt); in mem_cgroup_print_oom_info() 1469 K((u64)page_counter_read(&memcg->kmem)), in mem_cgroup_print_oom_info() 1470 K((u64)memcg->kmem.limit), memcg->kmem.failcnt); in mem_cgroup_print_oom_info() 1481 K(mem_cgroup_read_stat(iter, i))); in mem_cgroup_print_oom_info() 1486 K(mem_cgroup_nr_lru_pages(iter, BIT(i)))); in mem_cgroup_print_oom_info()
|
/linux-4.1.27/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
|
D | coretemp | 60 i7 3770/3770K 105 61 i5 3570/3570K, 3550, 3470/3450 105
|
/linux-4.1.27/arch/m68k/fpsp040/ |
D | slogn.S | 342 |--X = 2^(K) * Y, 1 <= Y < 2. THUS, Y = 1.XXXXXXXX....XX IN BINARY. 344 |--THE IDEA IS THAT LOG(X) = K*LOG2 + LOG(Y) 345 |-- = K*LOG2 + LOG(F) + LOG(1 + (Y-F)/F). 351 |--GET K, Y, F, AND ADDRESS OF 1/F. 354 subil #0x3FFF,%d0 | ...THIS IS K 355 addl ADJK(%a6),%d0 | ...ADJUST K, ORIGINAL INPUT MAY BE DENORM. 357 fmovel %d0,%fp1 | ...CONVERT K TO FLOATING-POINT FORMAT 360 movel #0x3FFF0000,X(%a6) | ...X IS NOW Y, I.E. 2^(-K)*X 376 |--SUMMARY: FP0 IS Y-F, A0 IS ADDRESS OF 1/F, FP1 IS K 382 fmulx LOGOF2,%fp1 | ...GET K*LOG2 WHILE FP0 IS NOT READY [all …]
|
D | stan.S | 345 fmovex %fp0,INARG(%a6) | ...+-2**K * F, 1 <= F < 2 349 subil #0x00003FFF,%d0 | ...D0 IS K 353 subil #27,%d0 | ...D0 IS L := K-27
|
D | setox.S | 190 | 8.4 K := (N-J)/64, M1 := truncate(K/2), M = K-M1, AdjFlag := 1. 596 asrl #6,%d0 | ...D0 is K 597 movel %d0,L_SCR1(%a6) | ...save K temporarily
|
/linux-4.1.27/arch/x86/crypto/ |
D | sha512-avx-asm.S | 78 # W[t] + K[t] | W[t+1] + K[t+1] 105 # W[t]+K[t] (stack frame) 136 add WK_2(idx), T1 # W[t] + K[t] from message scheduler 140 add h_64, T1 # T1 = CH(e,f,g) + W[t] + K[t] + h 142 add tmp0, T1 # T1 = CH(e,f,g) + W[t] + K[t] + S1(e) 164 # Two rounds are computed based on the values for K[t-2]+W[t-2] and 165 # K[t-1]+W[t-1] which were previously stored at WK_2 by the message 254 vpaddq K_t(idx), %xmm0, %xmm0 # Compute W[t]+K[t] 255 vmovdqa %xmm0, WK_2(idx) # Store W[t]+K[t] for next rounds 319 vpaddq K_t(t), %xmm0, %xmm0 # Compute W[t]+K[t] [all …]
|
D | sha512-ssse3-asm.S | 102 # W[t]+K[t] (stack frame) 129 add WK_2(idx), T1 # W[t] + K[t] from message scheduler 133 add h_64, T1 # T1 = CH(e,f,g) + W[t] + K[t] + h 135 add tmp0, T1 # T1 = CH(e,f,g) + W[t] + K[t] + S1(e) 158 # Two rounds are computed based on the values for K[t-2]+W[t-2] and 159 # K[t-1]+W[t-1] which were previously stored at WK_2 by the message 261 paddq K_t(\rnd), %xmm0 # Compute W[t]+K[t] 264 movdqa %xmm0, WK_2(idx) # Store W[t]+K[t] for next rounds 318 paddq K_t(t), %xmm0 # Compute W[t]+K[t] 326 paddq K_t(t), %xmm0 # Compute W[t]+K[t] [all …]
|
D | serpent-sse2-i586-asm_32.S | 57 #define K(x0, x1, x2, x3, x4, i) \ macro 114 K(x0, x1, x2, x3, x4, i); \ 530 K(RA, RB, RC, RD, RE, 0); 562 S7(RD, RE, RB, RC, RA); K(RA, RB, RC, RD, RE, 32); 593 K(RA, RB, RC, RD, RE, 32); 625 SI0(RE, RB, RC, RA, RD); K(RC, RD, RB, RE, RA, 0);
|
D | aesni-intel_avx-x86_64.S | 1290 ENCRYPT_SINGLE_BLOCK %xmm9 # E(K, Yn) 1316 ENCRYPT_SINGLE_BLOCK %xmm9 # E(K, Yn) 1338 vpxor %xmm1, %xmm9, %xmm9 # Plaintext XOR E(K, Yn) 1350 vpxor %xmm1, %xmm9, %xmm9 # Plaintext XOR E(K, Yn) 1401 ENCRYPT_SINGLE_BLOCK %xmm9 # E(K, Y0) 2567 ENCRYPT_SINGLE_BLOCK %xmm9 # E(K, Yn) 2593 ENCRYPT_SINGLE_BLOCK %xmm9 # E(K, Yn) 2615 vpxor %xmm1, %xmm9, %xmm9 # Plaintext XOR E(K, Yn) 2626 vpxor %xmm1, %xmm9, %xmm9 # Plaintext XOR E(K, Yn) 2676 ENCRYPT_SINGLE_BLOCK %xmm9 # E(K, Y0)
|
/linux-4.1.27/Documentation/video4linux/bttv/ |
D | Tuners | 88 TPI8PSB12 : PAL D/K+B/G (TPI8PSB02 w/FM) (P,170/450) 92 TAPC-Q703P: PAL D/K (TAPC-Q001P w/FM) (L,170/450) 93 TAPC-Q704P: PAL D/K+I (L,170/450) 94 TAPC-G702P: PAL D/K+B/G (L,170/450) 97 TADC-M201D: PAL D/K+B/G+I (L,143/425) (sound control at I2C address 0xc8)
|
D | Insmod-options | 109 2 - A2, D/K (1) 110 3 - A2, D/K (2) 111 4 - A2, D/K (3) 114 7 - NICAM, D/K (default)
|
D | README | 47 Memory at e2000000 (32-bit, prefetchable) [size=4K]
|
/linux-4.1.27/Documentation/zh_CN/ |
D | CodingStyle | 65 case 'K': 138 a)K&R是_正确的_,并且(b)K&R是正确的。此外,不管怎样函数都是特殊的(在C语言中 158 理由:K&R。 424 (c-set-style "K&R") 442 过,这还不算太糟糕,因为就算是GNU indent的作者也认同K&R的权威性(GNU的人并不是坏 444 (代表“K&R,8个字符缩进”),或者使用“scripts/Lindent”,这样就可以以最时髦的方式 685 cpp,gcc,gcc internals和indent的GNU手册——和K&R及本文相符合的部分,全部可以在
|
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb3/ |
D | mc5.c | 403 #define K * 1024 in t3_mc5_prep() macro 406 64 K, 128 K, 256 K, 32 K in t3_mc5_prep() 409 #undef K in t3_mc5_prep()
|
/linux-4.1.27/arch/x86/crypto/sha-mb/ |
D | sha1_x8_avx2.S | 237 # ymm12 T6 K 267 K = %ymm12 define 369 vmovdqu K00_19(%rip), K 373 SHA1_STEP_00_15 A,B,C,D,E, TMP,FUN, I, K, MAGIC_F0 382 SHA1_STEP_16_79 A,B,C,D,E, TMP,FUN, I, K, MAGIC_F0 388 vmovdqu K20_39(%rip), K 390 SHA1_STEP_16_79 A,B,C,D,E, TMP,FUN, I, K, MAGIC_F1 396 vmovdqu K40_59(%rip), K 398 SHA1_STEP_16_79 A,B,C,D,E, TMP,FUN, I, K, MAGIC_F2 404 vmovdqu K60_79(%rip), K [all …]
|
/linux-4.1.27/Documentation/DocBook/media/ |
D | vbi_625.gif.b64 | 45 3aly1n73vAcdMw7rxt4Lf/iE4+LX2rJH4it/+bLNvSI7JXbmS3/61K++9a+P/exrf/vc7773vw/+ 46 8It//OQvv/nPj/70q3/97G+/+98P//j+y3/+9K+//e+P//zrf//877///w+AASiAA0iABWiAB4iA 66 nMH5OcCprdaKrdn6m9yqU5W5reK6meUKms05mteqruwart7aru46rncZr99qr/farelar/mqr+/K
|
D | crop.gif.b64 | 57 B5Xx0ZWKgCW+EIUc+IgeKI8qSI9YcZSiUCxp0YhSiHhUSJGSaJFyWTh0WQjv0guB6IiGCYmIOY+K 86 XdoHkNqtXdqnLdm7fdqVTdy7PcaGPMSxPdW1zbzD/GnHPNmm3duSXd0XIN3TTd3ajdoVwN1iIJ+K
|
D | constraints.png.b64 | 54 K/sLsO9rlXKuXSoZU99jcfXxmPpp5LP7f5W+B9Ukz4GggtGiSkxBn5ja/UL0v3D5/nO1jyq1zWos
|
D | nv12mt_example.gif.b64 | 84 DlxdDBy9NvbAEHy9LTLBDVzB9wW9N/rBCqzBG8y+K+LBI2y/AHfBK+xgJnzCqHuEKsylMFFiIuyu
|
/linux-4.1.27/sound/soc/codecs/ |
D | wm8974.c | 283 unsigned int K, Ndiv, Nmod; in pll_factors() local 307 K = Kpart & 0xFFFFFFFF; in pll_factors() 310 if ((K % 10) >= 5) in pll_factors() 311 K += 5; in pll_factors() 314 K /= 10; in pll_factors() 316 pll_div->k = K; in pll_factors()
|
D | pcm512x.c | 703 unsigned long K; /* 10000 * J.D */ in pcm512x_find_pll_coeff() local 756 K = num * P / den; in pcm512x_find_pll_coeff() 758 if (K < 40000 || K > 120000) in pcm512x_find_pll_coeff() 761 J = K / 10000; in pcm512x_find_pll_coeff() 762 D = K % 10000; in pcm512x_find_pll_coeff() 783 K = DIV_ROUND_CLOSEST_ULL(10000ULL * pll_rate * P, pllin_rate); in pcm512x_find_pll_coeff() 784 if (K < 40000) in pcm512x_find_pll_coeff() 785 K = 40000; in pcm512x_find_pll_coeff() 787 if (K > 120000) in pcm512x_find_pll_coeff() 788 K = 120000; in pcm512x_find_pll_coeff() [all …]
|
D | wm8510.c | 283 unsigned int K, Ndiv, Nmod; in pll_factors() local 304 K = Kpart & 0xFFFFFFFF; in pll_factors() 307 if ((K % 10) >= 5) in pll_factors() 308 K += 5; in pll_factors() 311 K /= 10; in pll_factors() 313 pll_div.k = K; in pll_factors()
|
D | wm8940.c | 532 unsigned int K, Ndiv, Nmod; in pll_factors() local 565 K = Kpart & 0xFFFFFFFF; in pll_factors() 568 if ((K % 10) >= 5) in pll_factors() 569 K += 5; in pll_factors() 572 K /= 10; in pll_factors() 574 pll_div.k = K; in pll_factors()
|
D | wm8804.c | 351 unsigned long int K, Ndiv, Nmod, tmp; in pll_factors() local 395 K = Kpart & 0xffffffff; in pll_factors() 396 if ((K % 10) >= 5) in pll_factors() 397 K += 5; in pll_factors() 398 K /= 10; in pll_factors() 399 pll_div->k = K; in pll_factors()
|
D | wm8955.c | 150 unsigned int K, Ndiv, Nmod, target; in wm8995_pll_factors() local 182 K = Kpart & 0xFFFFFFFF; in wm8995_pll_factors() 184 if ((K % 10) >= 5) in wm8995_pll_factors() 185 K += 5; in wm8995_pll_factors() 188 pll->k = K / 10; in wm8995_pll_factors()
|
D | wm8960.c | 825 unsigned int K, Ndiv, Nmod; in pll_factors() local 851 K = Kpart & 0xFFFFFFFF; in pll_factors() 854 if ((K % 10) >= 5) in pll_factors() 855 K += 5; in pll_factors() 858 K /= 10; in pll_factors() 860 pll_div->k = K; in pll_factors()
|
D | wm8990.c | 904 unsigned int K, Ndiv, Nmod; in pll_factors() local 925 K = Kpart & 0xFFFFFFFF; in pll_factors() 928 if ((K % 10) >= 5) in pll_factors() 929 K += 5; in pll_factors() 932 K /= 10; in pll_factors() 934 pll_div->k = K; in pll_factors()
|
D | wm8983.c | 810 unsigned long int K, Ndiv, Nmod; in pll_factors() local 832 K = Kpart & 0xffffffff; in pll_factors() 833 if ((K % 10) >= 5) in pll_factors() 834 K += 5; in pll_factors() 835 K /= 10; in pll_factors() 836 pll_div->k = K; in pll_factors()
|
D | wm8900.c | 692 unsigned int K, Ndiv, Nmod, target; in fll_factors() local 739 K = Kpart & 0xFFFFFFFF; in fll_factors() 741 if ((K % 10) >= 5) in fll_factors() 742 K += 5; in fll_factors() 745 fll_div->k = K / 10; in fll_factors() 748 WARN_ON(!K && target != Fref * fll_div->fll_ratio * fll_div->n)) in fll_factors()
|
D | wm8985.c | 788 unsigned long int K, Ndiv, Nmod; in pll_factors() local 810 K = Kpart & 0xffffffff; in pll_factors() 811 if ((K % 10) >= 5) in pll_factors() 812 K += 5; in pll_factors() 813 K /= 10; in pll_factors() 814 pll_div->k = K; in pll_factors()
|
D | wm8991.c | 917 unsigned int K, Ndiv, Nmod; in pll_factors() local 938 K = Kpart & 0xFFFFFFFF; in pll_factors() 941 if ((K % 10) >= 5) in pll_factors() 942 K += 5; in pll_factors() 945 K /= 10; in pll_factors() 947 pll_div->k = K; in pll_factors()
|
D | wm8753.c | 717 unsigned int K, Ndiv, Nmod; in pll_factors() local 737 K = Kpart & 0xFFFFFFFF; in pll_factors() 740 if ((K % 10) >= 5) in pll_factors() 741 K += 5; in pll_factors() 744 K /= 10; in pll_factors() 746 pll_div->k = K; in pll_factors()
|
D | wm9713.c | 726 unsigned int K, Ndiv, Nmod, target; in pll_factors() local 768 K = Kpart & 0xFFFFFFFF; in pll_factors() 771 if ((K % 10) >= 5) in pll_factors() 772 K += 5; in pll_factors() 775 K /= 10; in pll_factors() 777 pll_div->k = K; in pll_factors()
|
D | wm9081.c | 471 unsigned int K, Ndiv, Nmod, target; in fll_factors() local 534 K = Kpart & 0xFFFFFFFF; in fll_factors() 536 if ((K % 10) >= 5) in fll_factors() 537 K += 5; in fll_factors() 540 fll_div->k = K / 10; in fll_factors()
|
D | wm8400.c | 876 unsigned int K, Nmod, target; in fll_factors() local 924 K = Kpart & 0xFFFFFFFF; in fll_factors() 926 if ((K % 10) >= 5) in fll_factors() 927 K += 5; in fll_factors() 930 factors->k = K / 10; in fll_factors()
|
D | wm8350.c | 980 unsigned int t1, t2, K, Nmod; in fll_factors() local 1009 K = Kpart & 0xFFFFFFFF; in fll_factors() 1012 if ((K % 10) >= 5) in fll_factors() 1013 K += 5; in fll_factors() 1016 K /= 10; in fll_factors() 1017 fll_div->k = K; in fll_factors()
|
D | wm8580.c | 373 unsigned int K, Ndiv, Nmod; in pll_factors() local 418 K = Kpart & 0xFFFFFFFF; in pll_factors() 420 pll_div->k = K; in pll_factors()
|
D | wm8993.c | 389 unsigned int K, Ndiv, Nmod, target; in fll_factors() local 453 K = Kpart & 0xFFFFFFFF; in fll_factors() 455 if ((K % 10) >= 5) in fll_factors() 456 K += 5; in fll_factors() 459 fll_div->k = K / 10; in fll_factors()
|
D | wm8995.c | 1728 unsigned int K, Ndiv, Nmod; in wm8995_get_fll_config() local 1782 K = Kpart & 0xFFFFFFFF; in wm8995_get_fll_config() 1784 if ((K % 10) >= 5) in wm8995_get_fll_config() 1785 K += 5; in wm8995_get_fll_config() 1788 fll->k = K / 10; in wm8995_get_fll_config()
|
D | wm8904.c | 1599 unsigned int K, Ndiv, Nmod, target; in fll_factors() local 1662 K = Kpart & 0xFFFFFFFF; in fll_factors() 1664 if ((K % 10) >= 5) in fll_factors() 1665 K += 5; in fll_factors() 1668 fll_div->k = K / 10; in fll_factors()
|
/linux-4.1.27/Documentation/virtual/kvm/devices/ |
D | arm-vgic.txt | 23 This address needs to be 4K aligned and the region covers 4 KByte. 28 This address needs to be 4K aligned and the region covers 4 KByte. 33 This address needs to be 64K aligned and the region covers 64 KByte. 37 redistributor register mappings. There are two 64K pages for each 40 This address needs to be 64K aligned.
|
/linux-4.1.27/arch/powerpc/boot/dts/ |
D | sbc8548-pre.dtsi | 38 d-cache-size = <0x8000>; // L1, 32K 39 i-cache-size = <0x8000>; // L1, 32K
|
D | gef_sbc610.dts | 46 d-cache-size = <32768>; // L1, 32K 47 i-cache-size = <32768>; // L1, 32K 57 d-cache-size = <32768>; // L1, 32K 58 i-cache-size = <32768>; // L1, 32K
|
D | amigaone.dts | 31 d-cache-size = <32768>; // L1, 32K 32 i-cache-size = <32768>; // L1, 32K
|
D | mpc5125twr.dts | 41 d-cache-size = <0x8000>; // L1, 32K 42 i-cache-size = <0x8000>; // L1, 32K 56 reg = <0x30000000 0x08000>; // 32K at 0x30000000
|
D | gef_ppc9a.dts | 46 d-cache-size = <32768>; // L1, 32K 47 i-cache-size = <32768>; // L1, 32K 57 d-cache-size = <32768>; // L1, 32K 58 i-cache-size = <32768>; // L1, 32K
|
D | socrates.dts | 38 d-cache-size = <0x8000>; // L1, 32K 39 i-cache-size = <0x8000>; // L1, 32K 85 cache-size = <0x40000>; // L2, 256K
|
D | gef_sbc310.dts | 47 d-cache-size = <32768>; // L1, 32K 48 i-cache-size = <32768>; // L1, 32K 58 d-cache-size = <32768>; // L1, 32K 59 i-cache-size = <32768>; // L1, 32K
|
D | mpc866ads.dts | 30 d-cache-size = <0x2000>; // L1, 8K 31 i-cache-size = <0x4000>; // L1, 16K
|
D | tqm8xx.dts | 37 d-cache-size = <0x1000>; // L1, 4K 38 i-cache-size = <0x1000>; // L1, 4K
|
D | tqm5200.dts | 31 d-cache-size = <0x4000>; // L1, 16K 32 i-cache-size = <0x4000>; // L1, 16K
|
D | ksi8560.dts | 38 d-cache-size = <0x8000>; /* L1, 32K */ 39 i-cache-size = <0x8000>; /* L1, 32K */ 83 cache-size = <0x40000>; /* L2, 256K */
|
D | charon.dts | 34 d-cache-size = <0x4000>; // L1, 16K 35 i-cache-size = <0x4000>; // L1, 16K
|
D | mpc7448hpc2.dts | 40 d-cache-size = <0x8000>; // L1, 32K bytes 41 i-cache-size = <0x8000>; // L1, 32K bytes
|
D | mpc8641_hpcn_36b.dts | 40 d-cache-size = <32768>; // L1, 32K 41 i-cache-size = <32768>; // L1, 32K 51 d-cache-size = <32768>; // L1, 32K 52 i-cache-size = <32768>; // L1, 32K
|
D | mpc8572ds_camp_core0.dts | 45 cache-size = <0x80000>; // L2, 512K
|
D | xpedite5200.dts | 40 d-cache-size = <0x8000>; // L1, 32K 41 i-cache-size = <0x8000>; // L1, 32K 83 cache-size = <0x80000>; // L2, 512K
|
D | mpc8540ads.dts | 40 d-cache-size = <0x8000>; // L1, 32K 41 i-cache-size = <0x8000>; // L1, 32K 86 cache-size = <0x40000>; // L2, 256K
|
D | mpc8555cds.dts | 40 d-cache-size = <0x8000>; // L1, 32K 41 i-cache-size = <0x8000>; // L1, 32K 86 cache-size = <0x40000>; // L2, 256K
|
D | stxssa8555.dts | 39 d-cache-size = <0x8000>; // L1, 32K 40 i-cache-size = <0x8000>; // L1, 32K 85 cache-size = <0x40000>; // L2, 256K
|
D | mpc8541cds.dts | 40 d-cache-size = <0x8000>; // L1, 32K 41 i-cache-size = <0x8000>; // L1, 32K 86 cache-size = <0x40000>; // L2, 256K
|
D | lite5200.dts | 31 d-cache-size = <0x4000>; // L1, 16K 32 i-cache-size = <0x4000>; // L1, 16K
|
D | xpedite5370.dts | 37 d-cache-size = <0x8000>; // L1, 32K 38 i-cache-size = <0x8000>; // L1, 32K 50 d-cache-size = <0x8000>; // L1, 32K 51 i-cache-size = <0x8000>; // L1, 32K
|
D | xpedite5301.dts | 39 d-cache-size = <0x8000>; // L1, 32K 40 i-cache-size = <0x8000>; // L1, 32K 52 d-cache-size = <0x8000>; // L1, 32K 53 i-cache-size = <0x8000>; // L1, 32K
|
D | mpc8560ads.dts | 41 d-cache-size = <0x8000>; // L1, 32K 42 i-cache-size = <0x8000>; // L1, 32K 86 cache-size = <0x40000>; // L2, 256K
|
D | xpedite5200_xmon.dts | 44 d-cache-size = <0x8000>; // L1, 32K 45 i-cache-size = <0x8000>; // L1, 32K 87 cache-size = <0x80000>; // L2, 512K
|
D | tqm8548-bigflash.dts | 42 d-cache-size = <0x8000>; // L1, 32K 43 i-cache-size = <0x8000>; // L1, 32K 85 cache-size = <0x80000>; // L2, 512K
|
D | tqm8548.dts | 42 d-cache-size = <0x8000>; // L1, 32K 43 i-cache-size = <0x8000>; // L1, 32K 85 cache-size = <0x80000>; // L2, 512K
|
D | xpedite5330.dts | 75 d-cache-size = <0x8000>; // L1, 32K 76 i-cache-size = <0x8000>; // L1, 32K 88 d-cache-size = <0x8000>; // L1, 32K 89 i-cache-size = <0x8000>; // L1, 32K
|
D | xcalibur1501.dts | 38 d-cache-size = <0x8000>; // L1, 32K 39 i-cache-size = <0x8000>; // L1, 32K 51 d-cache-size = <0x8000>; // L1, 32K 52 i-cache-size = <0x8000>; // L1, 32K
|
D | mpc8572ds_camp_core1.dts | 62 cache-size = <0x80000>; // L2, 512K
|
D | mpc5121.dtsi | 37 d-cache-size = <0x8000>; /* L1, 32K */ 38 i-cache-size = <0x8000>; /* L1, 32K */ 62 reg = <0x30000000 0x20000>; /* 128K at 0x30000000 */
|
D | mpc832x_rdb.dts | 37 d-cache-size = <16384>; // L1, 16K 38 i-cache-size = <16384>; // L1, 16K
|
D | mpc5200b.dtsi | 32 d-cache-size = <0x4000>; // L1, 16K 33 i-cache-size = <0x4000>; // L1, 16K
|
D | mpc832x_mds.dts | 49 d-cache-size = <16384>; // L1, 16K 50 i-cache-size = <16384>; // L1, 16K
|
D | mpc836x_mds.dts | 42 d-cache-size = <32768>; // L1, 32K 43 i-cache-size = <32768>; // L1, 32K
|
D | kmeter1.dts | 40 d-cache-size = <32768>; // L1, 32K 41 i-cache-size = <32768>; // L1, 32K
|
D | stx_gp3_8560.dts | 82 cache-size = <0x40000>; // L2, 256K
|
D | tqm8555.dts | 83 cache-size = <0x40000>; // L2, 256K
|
/linux-4.1.27/Documentation/zh_CN/arm64/ |
D | legacy_instructions.txt | 10 Suzuki K. Poulose <suzuki.poulose@arm.com> 22 Suzuki K. Poulose <suzuki.poulose@arm.com>
|
/linux-4.1.27/fs/squashfs/ |
D | Kconfig | 10 Block sizes greater than 4K are supported up to a maximum of 1 Mbytes 11 (default block size 128K). SquashFS 4.0 supports 64 bit filesystems 169 bool "Use 4K device block size?" 173 to 1K or the smallest block size supported by the block device 178 the optimal I/O size is 4K (even though the devices can support 181 Using a 4K device block size may also improve overall I/O 185 Setting this option will force Squashfs to use a 4K device block
|
/linux-4.1.27/Documentation/video4linux/cx2341x/ |
D | fw-dma.txt | 17 In practice, I've seen the average transfer to be roughly 80K, but transfers 18 above 128K were not uncommon, particularly at startup. The 128K figure is 20 allocate. Even still, 128K blocks are hard to come by, so the driver writer is
|
/linux-4.1.27/arch/arm/configs/ |
D | neponset_defconfig | 18 …8400n8 cpufreq=221200 rw root=/dev/mtdblock2 mtdparts=sa1100:512K(boot),1M(kernel),2560K(initrd),4…
|
/linux-4.1.27/arch/mips/include/asm/mach-ip27/ |
D | kernel-entry-init.h | 51 dsrl t1, 12 # 4K pfn 52 dsrl t2, 12 # 4K pfn
|
/linux-4.1.27/arch/powerpc/platforms/cell/ |
D | Kconfig | 61 bool "Use 64K pages to map SPE local store" 71 address spaces using 64K pages while the rest of the kernel 72 uses 4K pages. This can improve performances of applications
|
/linux-4.1.27/drivers/net/hamradio/ |
D | scc.c | 2050 #define K(x) kiss->x in scc_net_seq_show() macro 2052 K(txdelay), K(persist), K(slottime), K(tailtime), in scc_net_seq_show() 2053 K(fulldup), K(waittime), K(mintime), K(maxkeyup), in scc_net_seq_show() 2054 K(idletime), K(maxdefer), K(tx_inhibit), K(group)); in scc_net_seq_show() 2055 #undef K in scc_net_seq_show()
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/ |
D | spear-misc.txt | 9 - reg: Address range of misc space upto 8K
|
/linux-4.1.27/arch/arm/mach-pxa/ |
D | pxa27x.c | 160 unsigned int l, L, k, K; in pxa27x_get_lcdclk_frequency_10khz() local 168 K = L / k; in pxa27x_get_lcdclk_frequency_10khz() 170 return (K / 10000); in pxa27x_get_lcdclk_frequency_10khz()
|
/linux-4.1.27/ |
D | .mailmap | 91 Mythri P K <mythripk@ti.com> 121 Uwe Kleine-König <ukleinek@informatik.uni-freiburg.de> 122 Uwe Kleine-König <ukl@pengutronix.de> 123 Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/omap/ |
D | counter.txt | 1 OMAP Counter-32K bindings
|
/linux-4.1.27/Documentation/filesystems/pohmelfs/ |
D | info.txt | 59 $cfg A add -a server1.net -p 1025 -i $idx -K $hash_key -k $cipher_key 87 # ./fserver -a 0.0.0.0 -p 1025 -r /mnt -w 10 -K hash_key -k cipher_key 94 -K file - hash key size. Default: none.
|
/linux-4.1.27/arch/arc/ |
D | Kconfig.debug | 9 kernel stack attached to each process/thread. The default is 8K.
|
/linux-4.1.27/Documentation/devicetree/bindings/serial/ |
D | st-asc.txt | 12 for high bit rates (above 19.2K)
|
/linux-4.1.27/arch/sparc/kernel/ |
D | dtlb_miss.S | 2 ldxa [%g0] ASI_DMMU_TSB_8KB_PTR, %g1 ! Get TSB 8K pointer
|
D | itlb_miss.S | 2 ldxa [%g0] ASI_IMMU_TSB_8KB_PTR, %g1 ! Get TSB 8K pointer
|
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/ |
D | l2cache.txt | 21 cache-size = <0x40000>; // L2,256K
|
/linux-4.1.27/arch/tile/mm/ |
D | pgtable.c | 37 #define K(x) ((x) << (PAGE_SHIFT-10)) macro 80 K(total), largest_order ? K(1UL) << largest_order : 0); in show_mem()
|
/linux-4.1.27/drivers/crypto/ |
D | ixp4xx_crypto.c | 750 const u32 *K = (const u32 *)key; in setup_cipher() local 751 if (unlikely(!((K[0] ^ K[2]) | (K[1] ^ K[3])) || in setup_cipher() 752 !((K[2] ^ K[4]) | (K[3] ^ K[5])))) in setup_cipher()
|
/linux-4.1.27/drivers/crypto/ux500/cryp/ |
D | cryp_core.c | 1015 const u32 *K = (const u32 *)key; in des3_ablkcipher_setkey() local 1028 if (unlikely(!((K[0] ^ K[2]) | (K[1] ^ K[3])) || in des3_ablkcipher_setkey() 1029 !((K[2] ^ K[4]) | (K[3] ^ K[5]))) && in des3_ablkcipher_setkey()
|
/linux-4.1.27/drivers/media/dvb-frontends/ |
D | stb0899_algo.c | 911 u32 decim, K, wn, k_direct, k_indirect; in stb0899_dvbs2_set_btr_loopbw() local 920 K = (1 << config->btr_nco_bits) / (internal->master_clk / 1000); in stb0899_dvbs2_set_btr_loopbw() 921 K *= (internal->srate / 1000000) * decim; /*k=k 10^-8*/ in stb0899_dvbs2_set_btr_loopbw() 923 if (K != 0) { in stb0899_dvbs2_set_btr_loopbw() 924 K = sym_peak / K; in stb0899_dvbs2_set_btr_loopbw() 928 k_indirect = (wn * wn) / K; in stb0899_dvbs2_set_btr_loopbw() 930 k_direct = (2 * wn * zeta) / K; /*kDirect = kDirect 10^-2*/ in stb0899_dvbs2_set_btr_loopbw()
|
/linux-4.1.27/Documentation/vm/ |
D | hugetlbpage.txt | 5 support 4K and 2M (1G if architecturally supported) page sizes, ia64 6 architecture supports multiple page sizes 4K, 8K, 64K, 256K, 1M, 4M, 16M, 7 256M and ppc64 supports 4K and 16M. A TLB is a cache of virtual-to-physical 296 can use [G|g]/[M|m]/[K|k] to represent giga/mega/kilo. For example, size=2K
|
D | frontswap.txt | 143 4K pagesize, this is 1MB per 32GB swap. 248 where data is compressed and the original 4K page has been compressed 249 to 1K. Now an attempt is made to overwrite the page with data that 250 is non-compressible and so would take the entire 4K. But the backend
|
/linux-4.1.27/Documentation/devicetree/bindings/sound/ |
D | sgtl5000.txt | 14 micbias resistor is set to 4K.
|
/linux-4.1.27/Documentation/ |
D | bad_memory.txt | 42 memmap=64K$0x18690000
|
D | devices.txt | 146 4 = /dev/fd?d360 5.25" 360K in a 360K drive(1) 147 20 = /dev/fd?h360 5.25" 360K in a 1200K drive(1) 148 48 = /dev/fd?h410 5.25" 410K in a 1200K drive 149 64 = /dev/fd?h420 5.25" 420K in a 1200K drive 150 24 = /dev/fd?h720 5.25" 720K in a 1200K drive 151 80 = /dev/fd?h880 5.25" 880K in a 1200K drive(1) 152 8 = /dev/fd?h1200 5.25" 1200K in a 1200K drive(1) 153 40 = /dev/fd?h1440 5.25" 1440K in a 1200K drive(1) 154 56 = /dev/fd?h1476 5.25" 1476K in a 1200K drive 155 72 = /dev/fd?h1494 5.25" 1494K in a 1200K drive [all …]
|
D | SAK.txt | 11 providing SAK. One is the ALT-SYSRQ-K sequence. You shouldn't use
|
D | iostats.txt | 64 efficiency. Thus two 4K reads may become one 8K read before it is
|
D | CodingStyle | 51 case 'K': 126 (a) K&R are _right_ and (b) K&R are right. Besides, functions are 148 Rationale: K&R. 545 recognize the authority of K&R (the GNU people aren't evil, they are 547 options "-kr -i8" (stands for "K&R, 8 character indents"), or use 940 GNU manuals - where in compliance with K&R and this text - for cpp, gcc,
|
/linux-4.1.27/Documentation/filesystems/ |
D | ubifs.txt | 25 typically 100K-1G for SLC NAND and NOR flashes, and 1K-10K for MLC
|
D | sharedsubtree.txt | 850 / F G J K H I 852 E<-->K 858 mounts 'J' and 'K' and 'D' has got two slave mounts 'H' and 'I'. 859 'E' is also shared with 'K' and they propagate to each other. And 860 'K' has 3 slaves 'M', 'L' and 'N' 864 A's ->mnt_slave_list links with ->mnt_slave of 'E', 'K', 'F' and 'G' 866 E's ->mnt_share links with ->mnt_share of K 867 'E', 'K', 'F', 'G' have their ->mnt_master point to struct 869 'M', 'L', 'N' have their ->mnt_master point to struct vfsmount of 'K' 870 K's ->mnt_slave_list links with ->mnt_slave of 'M', 'L' and 'N' [all …]
|
D | squashfs.txt | 7 minimise data overhead. Block sizes greater than 4K are supported up to a 8 maximum of 1Mbytes (default block size 128K). 226 The xattr lists are packed into compressed 8K metadata blocks.
|
D | affs.txt | 27 All of the above filesystems allow block sizes from 512 to 32K bytes. 30 gain above 4K seems not really worth the price, so you don't lose too
|
D | nilfs2.txt | 189 0 +1K +4K +8M +16M +24M +(8MB x N)
|
D | btrfs.txt | 46 bytes, optionally with a K, M, or G suffix, case insensitive. 136 with a K, M, or G suffix, case insensitive. In practice, this value
|
D | romfs.txt | 14 about 30K (and does not support device nodes or symlinks), while the 15 nfs module with nfsroot is about 57K. Furthermore, as a bit unfair
|
/linux-4.1.27/Documentation/scsi/ |
D | ChangeLog.ips | 11 4.90.08 - Data Corruption if First Scatter Gather Element is > 64K 121 8K stripe size.
|
D | aha152x.txt | 172 "Kernel Hacker's Guide", Michael K. Johnson (johnsonm@sunsite.unc.edu) 176 Michael K. Johnson (johnsonm@sunsite.unc.edu)
|
D | g_NCR5380.txt | 63 K.Lentin@cs.monash.edu.au
|
D | arcmsr_spec.txt | 486 ** 0/1/2/3/4/5->4/8/16/32/64/128K ) 509 ** (0/1/2/3/4/5->4/8/16/32/64/128K) 529 ** (0/1/2/3/4/5->4/8/16/32/64/128K)
|
/linux-4.1.27/drivers/s390/char/ |
D | keyboard.c | 305 if (kbd->sysrq == K(KT_LATIN, '-')) { in kbd_keycode() 311 kbd->sysrq = K(KT_LATIN, '-'); in kbd_keycode() 319 kbd->sysrq = K(type, value); in kbd_keycode()
|
D | defkeymap.map | 86 keycode 82 = acircumflex K
|
/linux-4.1.27/Documentation/ia64/ |
D | aliasing.txt | 79 User mappings are typically done with 16K or 64K pages. The smaller 80 page size allows more flexibility because only 16K or 64K has to be
|
/linux-4.1.27/drivers/staging/gdm72xx/ |
D | Kconfig | 21 bool "Enable K mode"
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | imx27-phytec-phycard-s-som.dtsi | 2 * Copyright 2012 Sascha Hauer, Uwe Kleine-König, Steffen Trumtrar
|
D | omap2420-n8x0-common.dtsi | 50 reg = <0 0 0x20000>; /* CS0, offset 0, IO size 128K */
|
D | tegra30-cardhu-a02.dts | 90 gpio = <&gpio TEGRA_GPIO(K, 3) GPIO_ACTIVE_HIGH>;
|
D | omap3-overo-common-peripherals.dtsi | 50 /* optional 1K EEPROM with revision information */
|
D | omap4-duovero-parlor.dts | 123 /* optional 1K EEPROM with revision information */
|
D | omap3-n950-n9.dtsi | 128 reg = <0 0 0x20000>; /* CS0, offset 0, IO size 128K */
|
D | tegra124-nyan.dtsi | 586 gpio = <&gpio TEGRA_GPIO(K, 1) GPIO_ACTIVE_HIGH>; 658 gpio = <&gpio TEGRA_GPIO(K, 6) GPIO_ACTIVE_HIGH>;
|
D | exynos4412-trats2.dts | 918 pullup-ohm = <100000>; /* 100K */ 919 pulldown-ohm = <100000>; /* 100K */ 926 pullup-ohm = <100000>; /* 100K */ 927 pulldown-ohm = <100000>; /* 100K */
|
/linux-4.1.27/arch/metag/ |
D | Kconfig.soc | 28 This is a Toumaz Technology Xenif TZ1090 (A.K.A. Comet) SoC containing
|
/linux-4.1.27/drivers/net/ethernet/realtek/ |
D | Kconfig | 74 bool "Support for uncommon RTL-8139 rev. K (automatic channel equalization)" 79 RTL-8139 revision K boards, and totally unused otherwise. It tries
|
/linux-4.1.27/Documentation/infiniband/ |
D | ipoib.txt | 39 fabric with a 2K MTU, the IPoIB MTU will be 2048 - 4 = 2044 bytes. 43 transport and allows an MTU up to the maximal IP packet size of 64K,
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf-stat.txt | 39 - a symbolically formed event like 'pmu/config=M,config1=N,config2=K/' 40 where M, N, K are numbers (in decimal, hex, octal format).
|
D | perf-top.txt | 71 specification with appended unit character - B/K/M/G. The 93 -K::
|
D | perf-record.txt | 40 - a symbolically formed event like 'pmu/config=M,config1=N,config3=K/' 42 where M, N, K are numbers (in decimal, hex, octal format). Acceptable 109 specification with appended unit character - B/K/M/G. The
|
/linux-4.1.27/tools/perf/util/ |
D | string.c | 4 #define K 1024LL macro
|
/linux-4.1.27/Documentation/devicetree/bindings/input/ |
D | cros-ec-keyb.txt | 52 /* S K J ; */
|
/linux-4.1.27/Documentation/devicetree/bindings/i2c/ |
D | trivial-devices.txt | 91 samsung,24ad0xd1 S524AD0XF1 (128K/256K-bit Serial EEPROM for Low Power)
|
/linux-4.1.27/drivers/iommu/ |
D | Kconfig | 29 This allocator supports 4K/2M/1G, 16K/32M and 64K/512M page
|
/linux-4.1.27/Documentation/s390/ |
D | monreader.txt | 29 (the values BEGPAG and ENDPAG are given in units of 4K pages). 127 output of the CMS utility MONWRITE without the 4K control blocks). The MCE 134 start offset relative to a 4K page (frame) boundary.
|
D | zfcpdump.txt | 21 dump format defines a 4K header followed by plain uncompressed memory. The
|
/linux-4.1.27/lib/ |
D | iov_iter.c | 84 #define iterate_all_kinds(i, n, v, I, B, K) { \ argument 93 iterate_kvec(i, n, v, kvec, skip, (K)) \ 101 #define iterate_and_advance(i, n, v, I, B, K) { \ argument 116 iterate_kvec(i, n, v, kvec, skip, (K)) \
|
/linux-4.1.27/arch/s390/kernel/ |
D | head64.S | 65 .Lscan2g:.quad 0x80000000 + 0x20000 - 8 # 2GB + 128K - 8
|
/linux-4.1.27/arch/x86/net/ |
D | bpf_jit_comp.c | 107 #define CHOOSE_LOAD_FUNC(K, func) \ argument 108 ((int)K < 0 ? ((int)K >= SKF_LL_OFF ? func##_negative_offset : func) : func##_positive_offset)
|
/linux-4.1.27/drivers/parisc/ |
D | Kconfig | 9 were also used in servers from the E-class to the K-class. They 17 The HP-PB bus was used in the Nova class and K-class servers.
|
/linux-4.1.27/Documentation/blockdev/ |
D | zram.txt | 68 echo 256K > /sys/block/zram0/disksize 86 echo 256K > /sys/block/zram0/mem_limit
|
/linux-4.1.27/drivers/atm/ |
D | Kconfig | 301 control memory (128K-1KVC, 512K-4KVC), the size of the packet 302 memory (128K, 512K, 1M), and the PHY type (Single/Multi mode OC3,
|
/linux-4.1.27/arch/arm64/boot/dts/amd/ |
D | amd-seattle-soc.dtsi | 164 /* I/O Memory (size=64K) */
|
/linux-4.1.27/Documentation/fb/ |
D | tridentfb.txt | 51 more memory than it actually has. For instance mine is 192K less than
|
D | pxafb.txt | 13 Amount of video memory to allocate (can be suffixed with K or M
|
/linux-4.1.27/drivers/infiniband/hw/ehca/ |
D | ipz_pt_fn.c | 94 #error Kernel pages must be at least as large than eHCA pages (4K) !
|
/linux-4.1.27/Documentation/powerpc/ |
D | cxl.txt | 73 When using AFU directed mode, up to 16K simultaneous contexts can 74 be supported. This means up to 16K simultaneous userspace 253 The buffer passed to read() must be at least 4K bytes.
|
/linux-4.1.27/drivers/zorro/ |
D | zorro.ids | 132 0100 Impact Series I (4K) [SCSI Host Adapter] 133 0200 Impact Series I (16K/2) [SCSI Host Adapter] 134 0300 Impact Series I (16K/2) [SCSI Host Adapter]
|
/linux-4.1.27/Documentation/power/ |
D | video.txt | 154 Sony Vaio PCG-C1VRX/K s3_bios (2) 157 Sony Vaio PCG-GR7/K none (1), but needs radeonfb, use radeontool (http://fdd.com/software/radeon/)…
|
/linux-4.1.27/Documentation/arm/ |
D | README | 135 I've just got 240K/s off it (a dd with bs=128k); thats about half of what 136 RiscOS gets; but it's a heck of a lot better than the 50K/s I was getting
|
/linux-4.1.27/arch/powerpc/boot/dts/fsl/ |
D | bsc9131si-post.dtsi | 100 cache-size = <0x40000>; // L2,256K
|
D | bsc9132si-post.dtsi | 101 cache-size = <0x40000>; // L2,256K
|
D | mpc8548si-post.dtsi | 140 cache-size = <0x80000>; // L2, 512K
|
D | c293si-post.dtsi | 108 cache-size = <0x80000>; // L2,512K
|
D | mpc8544si-post.dtsi | 171 cache-size = <0x40000>; // L2, 256K
|
D | p2020si-post.dtsi | 168 cache-size = <0x80000>; // L2,512K
|
D | p1020si-post.dtsi | 140 cache-size = <0x40000>; // L2,256K
|
D | p1010si-post.dtsi | 153 cache-size = <0x40000>; // L2,256K
|
/linux-4.1.27/arch/arm/mach-realview/ |
D | Kconfig | 73 # ARMv6 CPU without K extensions, but does have the new exclusive ops
|
/linux-4.1.27/Documentation/isdn/ |
D | README.sc | 73 versus between 16K and 64K. New methods for using the shared RAM 75 only one 16K page.
|
/linux-4.1.27/Documentation/x86/ |
D | boot.txt | 153 32K, although the boot loader may choose to load only the first two 154 sectors (1K) and then examine the bootup sector size. 535 same 64K segment as the real-mode code itself. 813 located in the same 64K segment as the real-mode setup code; it is 814 thus permitted to give the stack/heap the full 64K segment and locate 891 /* It is recommended to clear memory up to the 32K mark */ 910 Note that Image/zImage kernels can be up to 512K in size, and thus use 937 (case insensitive) K, M, G, T, P or E (meaning << 10, << 20,
|
/linux-4.1.27/scripts/genksyms/ |
D | keywords.hash.c_shipped | 14 && ('J' == 74) && ('K' == 75) && ('L' == 76) && ('M' == 77) \
|
/linux-4.1.27/drivers/gpu/drm/radeon/ |
D | sislands_smc.h | 372 uint32_t K; member
|
/linux-4.1.27/drivers/staging/rtl8188eu/include/ |
D | rtw_security.h | 311 static const unsigned long K[64] = { variable
|
/linux-4.1.27/Documentation/filesystems/nfs/ |
D | rpc-server-gss.txt | 60 than a few housand groups (the current hard limit in the kernel is 65K
|
/linux-4.1.27/drivers/staging/rtl8723au/include/ |
D | rtw_security.h | 293 static const unsigned long K[64] = { variable
|
/linux-4.1.27/Documentation/cgroups/ |
D | memory.txt | 328 limit, and "K" the kernel limit. There are three possible ways limits can be 331 U != 0, K = unlimited: 335 U != 0, K < U: 340 In this case, the admin could set up K so that the sum of all groups is 344 triggered for a cgroup when it hits K while staying below U, which makes 347 U != 0, K >= U: 374 NOTE: We can use a suffix (k, K, m, M, g or G) to indicate values in kilo,
|
/linux-4.1.27/kernel/debug/kdb/ |
D | kdb_main.c | 2583 #define K(x) ((x) << (PAGE_SHIFT - 10)) in kdb_summary() macro 2586 K(val.totalram), K(val.freeram), K(val.bufferram)); in kdb_summary()
|