/linux-4.1.27/arch/powerpc/crypto/ |
D | sha1-powerpc-asm.S | 23 #define W(t) (((t)%16)+16) macro 26 lwz W(t),(t)*4(r4) 35 add r14,r0,W(t); \ 36 lwz W((t)+4),((t)+4)*4(r4); \ 47 xor r5,W((t)+4-3),W((t)+4-8); \ 49 xor W((t)+4),W((t)+4-16),W((t)+4-14); \ 50 add r0,r0,W(t); \ 51 xor W((t)+4),W((t)+4),r5; \ 53 rotlwi W((t)+4),W((t)+4),1 62 add r0,r0,W(t); \ [all …]
|
/linux-4.1.27/arch/x86/kernel/ |
D | uprobes.c | 58 #define W(row, b0, b1, b2, b3, b4, b5, b6, b7, b8, b9, ba, bb, bc, bd, be, bf)\ macro 101 W(0x00, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1) | /* 00 */ 102 W(0x10, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0) , /* 10 */ 103 W(0x20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* 20 */ 104 W(0x30, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) , /* 30 */ 105 W(0x40, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* 40 */ 106 W(0x50, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) , /* 50 */ 107 W(0x60, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0) | /* 60 */ 108 W(0x70, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) , /* 70 */ 109 W(0x80, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* 80 */ [all …]
|
/linux-4.1.27/arch/x86/purgatory/ |
D | sha256.c | 38 static inline void LOAD_OP(int I, u32 *W, const u8 *input) in LOAD_OP() argument 40 W[I] = __be32_to_cpu(((__be32 *)(input))[I]); in LOAD_OP() 43 static inline void BLEND_OP(int I, u32 *W) in BLEND_OP() argument 45 W[I] = s1(W[I-2]) + W[I-7] + s0(W[I-15]) + W[I-16]; in BLEND_OP() 51 u32 W[64]; in sha256_transform() local 56 LOAD_OP(i, W, input); in sha256_transform() 60 BLEND_OP(i, W); in sha256_transform() 67 t1 = h + e1(e) + Ch(e, f, g) + 0x428a2f98 + W[0]; in sha256_transform() 69 t1 = g + e1(d) + Ch(d, e, f) + 0x71374491 + W[1]; in sha256_transform() 71 t1 = f + e1(c) + Ch(c, d, e) + 0xb5c0fbcf + W[2]; in sha256_transform() [all …]
|
/linux-4.1.27/crypto/ |
D | sha256_generic.c | 45 static inline void LOAD_OP(int I, u32 *W, const u8 *input) in LOAD_OP() argument 47 W[I] = get_unaligned_be32((__u32 *)input + I); in LOAD_OP() 50 static inline void BLEND_OP(int I, u32 *W) in BLEND_OP() argument 52 W[I] = s1(W[I-2]) + W[I-7] + s0(W[I-15]) + W[I-16]; in BLEND_OP() 58 u32 W[64]; in sha256_transform() local 63 LOAD_OP(i, W, input); in sha256_transform() 67 BLEND_OP(i, W); in sha256_transform() 74 t1 = h + e1(e) + Ch(e,f,g) + 0x428a2f98 + W[ 0]; in sha256_transform() 76 t1 = g + e1(d) + Ch(d,e,f) + 0x71374491 + W[ 1]; in sha256_transform() 78 t1 = f + e1(c) + Ch(c,d,e) + 0xb5c0fbcf + W[ 2]; in sha256_transform() [all …]
|
D | sha512_generic.c | 71 static inline void LOAD_OP(int I, u64 *W, const u8 *input) in LOAD_OP() argument 73 W[I] = get_unaligned_be64((__u64 *)input + I); in LOAD_OP() 76 static inline void BLEND_OP(int I, u64 *W) in BLEND_OP() argument 78 W[I & 15] += s1(W[(I-2) & 15]) + W[(I-7) & 15] + s0(W[(I-15) & 15]); in BLEND_OP() 87 u64 W[16]; in sha512_transform() local 101 LOAD_OP(i + j, W, input); in sha512_transform() 104 BLEND_OP(i + j, W); in sha512_transform() 109 t1 = h + e1(e) + Ch(e,f,g) + sha512_K[i ] + W[(i & 15)]; in sha512_transform() 111 t1 = g + e1(d) + Ch(d,e,f) + sha512_K[i+1] + W[(i & 15) + 1]; in sha512_transform() 113 t1 = f + e1(c) + Ch(c,d,e) + sha512_K[i+2] + W[(i & 15) + 2]; in sha512_transform() [all …]
|
D | cast6_generic.c | 101 static inline void W(u32 *key, unsigned int i) in W() function 139 W(key, 2 * i); in __cast6_setkey() 140 W(key, 2 * i + 1); in __cast6_setkey()
|
/linux-4.1.27/scripts/rt-tester/ |
D | t5-l4-pi-boost-deboost.tst | 4 # Op: C(ommand)/T(est)/W(ait) 51 W: opcodeeq: 0: 0 62 W: locked: 0: 0 66 W: locked: 1: 1 70 W: blocked: 1: 0 75 W: locked: 2: 2 79 W: blocked: 2: 1 85 W: locked: 3: 3 89 W: blocked: 3: 2 96 W: blocked: 4: 3 [all …]
|
D | t5-l4-pi-boost-deboost-setsched.tst | 4 # Op: C(ommand)/T(est)/W(ait) 51 W: opcodeeq: 0: 0 62 W: locked: 0: 0 66 W: locked: 1: 1 70 W: blocked: 1: 0 75 W: locked: 2: 2 79 W: blocked: 2: 1 85 W: locked: 3: 3 89 W: blocked: 3: 2 96 W: blocked: 4: 3 [all …]
|
D | t4-l2-pi-deboost.tst | 4 # Op: C(ommand)/T(est)/W(ait) 51 W: opcodeeq: 0: 0 61 W: locked: 0: 0 65 W: locked: 1: 1 69 W: blocked: 3: 0 74 W: blocked: 0: 1 81 W: blockedwake: 0: 1 84 W: unlocked: 1: 1 89 W: blocked: 2: 1 94 W: unlocked: 3: 0 [all …]
|
D | t2-l1-2rt-sameprio.tst | 4 # Op: C(ommand)/T(est)/W(ait) 51 W: opcodeeq: 0: 0 60 W: locked: 0: 0 61 W: blocked: 1: 0 66 W: locked: 1: 0 69 W: unlocked: 0: 0 74 W: unlocked: 1: 0 79 W: locked: 1: 0 80 W: blocked: 0: 0 85 W: locked: 0: 0 [all …]
|
D | t3-l1-pi-1rt.tst | 4 # Op: C(ommand)/T(est)/W(ait) 51 W: opcodeeq: 0: 0 60 W: locked: 0: 0 64 W: blocked: 1: 0 69 W: blocked: 2: 0 76 W: locked: 2: 0 77 W: unlocked: 0: 0 83 W: unlocked: 2: 0 84 W: locked: 1: 0 87 W: unlocked: 1: 0
|
D | t2-l2-2rt-deadlock.tst | 4 # Op: C(ommand)/T(est)/W(ait) 51 W: opcodeeq: 0: 0 59 W: locked: 0: 0 63 W: locked: 1: 1 67 W: blocked: 0: 1 71 W: blocked: 1: 0 75 W: unlocked: 1: 0 77 W: unlocked: 0: 1 81 W: unlocked: 0: 0 83 W: unlocked: 1: 1
|
D | t3-l1-pi-3rt.tst | 4 # Op: C(ommand)/T(est)/W(ait) 51 W: opcodeeq: 0: 0 60 W: locked: 0: 0 64 W: blocked: 1: 0 69 W: blocked: 2: 0 76 W: locked: 2: 0 77 W: unlocked: 0: 0 83 W: locked: 1: 0 84 W: unlocked: 2: 0 87 W: unlocked: 1: 0
|
D | t3-l2-pi.tst | 4 # Op: C(ommand)/T(est)/W(ait) 51 W: opcodeeq: 0: 0 60 W: locked: 0: 0 64 W: blocked: 1: 0 69 W: blocked: 2: 0 76 W: locked: 2: 0 77 W: unlocked: 0: 0 83 W: unlocked: 2: 0 84 W: locked: 1: 0 87 W: unlocked: 1: 0
|
D | t3-l1-pi-2rt.tst | 4 # Op: C(ommand)/T(est)/W(ait) 51 W: opcodeeq: 0: 0 60 W: locked: 0: 0 64 W: blocked: 1: 0 69 W: blocked: 2: 0 77 W: locked: 2: 0 78 W: unlocked: 0: 0 84 W: unlocked: 2: 0 85 W: locked: 1: 0 88 W: unlocked: 1: 0
|
D | t3-l1-pi-steal.tst | 4 # Op: C(ommand)/T(est)/W(ait) 51 W: opcodeeq: 0: 0 60 W: locked: 0: 0 64 W: blocked: 1: 0 71 W: blockedwake: 1: 0 80 W: locked: 2: 0 81 W: blocked: 1: 0 87 W: blockedwake: 1: 0 89 W: locked: 1: 0 91 W: unlocked: 1: 0
|
D | t3-l1-pi-signal.tst | 4 # Op: C(ommand)/T(est)/W(ait) 49 W: opcodeeq: 0: 0 58 W: locked: 0: 0 62 W: blocked: 1: 0 68 W: blocked: 2: 0 74 W: unlocked: 2: 0 85 W: locked: 1: 0 86 W: unlocked: 0: 0 90 W: unlocked: 1: 0
|
D | t2-l1-pi.tst | 4 # Op: C(ommand)/T(est)/W(ait) 51 W: opcodeeq: 0: 0 59 W: locked: 0: 0 63 W: blocked: 1: 0 68 W: locked: 1: 0 71 W: unlocked: 0: 0 76 W: unlocked: 1: 0
|
D | t2-l1-signal.tst | 4 # Op: C(ommand)/T(est)/W(ait) 51 W: opcodeeq: 0: 0 59 W: locked: 0: 0 63 W: blocked: 1: 0 67 W: unlocked: 1: 0 72 W: unlocked: 0: 0
|
/linux-4.1.27/arch/x86/crypto/ |
D | sha1_ssse3_asm.S | 316 .set W, W0 define 324 .set W_minus_32, W 335 .set W_minus_04, W 336 .set W, W_minus_32 define 357 movdqa W_TMP1, W 379 movdqa W_minus_12, W 380 palignr $8, W_minus_16, W # w[i-14] 383 pxor W_minus_08, W 386 pxor W_TMP1, W 387 movdqa W, W_TMP2 [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 166 # Eg. XMM2=W[t-2] really means XMM2={W[t-2]|W[t-1]} 175 movdqa W_t(idx), %xmm2 # XMM2 = W[t-2] 178 movdqa %xmm2, %xmm0 # XMM0 = W[t-2] 183 movdqu W_t(idx), %xmm5 # XMM5 = W[t-15] [all …]
|
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 172 # Eg. XMM4=W[t-2] really means XMM4={W[t-2]|W[t-1]} 177 vmovdqa W_t(idx), %xmm4 # XMM4 = W[t-2] 179 vmovdqu W_t(idx), %xmm5 # XMM5 = W[t-15] [all …]
|
D | sha256-ssse3-asm.S | 149 ## compute W[-16] + W[-7] 4 at a time 154 palignr $4, X2, XTMP0 # XTMP0 = W[-7] 162 paddd X0, XTMP0 # XTMP0 = W[-7] + W[-16] 167 palignr $4, X0, XTMP1 # XTMP1 = W[-15] 171 movdqa XTMP1, XTMP2 # XTMP2 = W[-15] 175 movdqa XTMP1, XTMP3 # XTMP3 = W[-15] 186 por XTMP2, XTMP1 # XTMP1 = W[-15] ror 7 191 movdqa XTMP3, XTMP2 # XTMP2 = W[-15] 194 movdqa XTMP3, XTMP4 # XTMP4 = W[-15] 211 psrld $3, XTMP4 # XTMP4 = W[-15] >> 3 [all …]
|
D | sha512-avx2-asm.S | 170 MY_VPALIGNR YTMP0, Y_3, Y_2, 8 # YTMP0 = W[-7] 172 vpaddq Y_0, YTMP0, YTMP0 # YTMP0 = W[-7] + W[-16] 174 MY_VPALIGNR YTMP1, Y_1, Y_0, 8 # YTMP1 = W[-15] 181 vpor YTMP2, YTMP3, YTMP3 # YTMP3 = W[-15] ror 1 183 vpsrlq $7, YTMP1, YTMP4 # YTMP4 = W[-15] >> 7 227 vpor YTMP2, YTMP1, YTMP1 # YTMP1 = W[-15] ror 8 229 vpxor YTMP4, YTMP3, YTMP3 # YTMP3 = W[-15] ror 1 ^ W[-15] >> 7 234 vpaddq YTMP1, YTMP0, YTMP0 # YTMP0 = W[-16] + W[-7] + s0 236 vperm2f128 $0x0, YTMP0, YTMP0, Y_0 # Y_0 = W[-16] + W[-7] + s0 {BABA} 238 vpand MASK_YMM_LO(%rip), YTMP0, YTMP0 # YTMP0 = W[-16] + W[-7] + s0 {DC00} [all …]
|
D | sha256-avx-asm.S | 156 ## compute W[-16] + W[-7] 4 at a time 161 vpalignr $4, X2, X3, XTMP0 # XTMP0 = W[-7] 168 vpaddd X0, XTMP0, XTMP0 # XTMP0 = W[-7] + W[-16] 173 vpalignr $4, X0, X1, XTMP1 # XTMP1 = W[-15] 190 vpor XTMP2, XTMP3, XTMP3 # XTMP1 = W[-15] MY_ROR 7 204 vpsrld $3, XTMP1, XTMP4 # XTMP4 = W[-15] >> 3 216 vpxor XTMP2, XTMP3, XTMP3 # XTMP1 = W[-15] MY_ROR 7 ^ W[-15] MY_ROR 225 vpshufd $0b11111010, X3, XTMP2 # XTMP2 = W[-2] {BBAA} 228 vpaddd XTMP1, XTMP0, XTMP0 # XTMP0 = W[-16] + W[-7] + s0 240 vpsrld $10, XTMP2, XTMP4 # XTMP4 = W[-2] >> 10 {BBAA} [all …]
|
D | sha256-avx2-asm.S | 167 vpalignr $4, X2, X3, XTMP0 # XTMP0 = W[-7] 173 vpaddd X0, XTMP0, XTMP0 # XTMP0 = W[-7] + W[-16]# y1 = (e >> 6)# S1 182 vpalignr $4, X0, X1, XTMP1 # XTMP1 = W[-15] 198 vpor XTMP2, XTMP3, XTMP3 # XTMP3 = W[-15] ror 7 217 vpsrld $3, XTMP1, XTMP4 # XTMP4 = W[-15] >> 3 238 vpxor XTMP2, XTMP3, XTMP3 # XTMP3 = W[-15] ror 7 ^ W[-15] ror 18 245 vpshufd $0b11111010, X3, XTMP2 # XTMP2 = W[-2] {BBAA} 249 vpaddd XTMP1, XTMP0, XTMP0 # XTMP0 = W[-16] + W[-7] + s0 254 vpsrld $10, XTMP2, XTMP4 # XTMP4 = W[-2] >> 10 {BBAA} 266 vpsrlq $19, XTMP2, XTMP3 # XTMP3 = W[-2] ror 19 {xBxA} [all …]
|
/linux-4.1.27/arch/arm/crypto/ |
D | sha1-armv7-neon.S | 93 W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28) \ argument 95 pre1(i16,W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28); \ 99 pre2(i16,W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28); \ 103 pre3(i16,W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28); \ 107 W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28) \ argument 109 pre1(i16,W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28); \ 113 pre2(i16,W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28); \ 116 pre3(i16,W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28); \ 120 W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28) \ argument 122 pre1(i16,W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28); \ [all …]
|
/linux-4.1.27/arch/arm/kernel/ |
D | hyp-stub.S | 213 __hyp_stub_reset: W(b) . 214 __hyp_stub_und: W(b) . 215 __hyp_stub_svc: W(b) . 216 __hyp_stub_pabort: W(b) . 217 __hyp_stub_dabort: W(b) . 218 __hyp_stub_trap: W(b) __hyp_stub_do_trap 219 __hyp_stub_irq: W(b) . 220 __hyp_stub_fiq: W(b) .
|
D | entry-armv.S | 1219 W(b) vector_rst 1220 W(b) vector_und 1221 W(ldr) pc, __vectors_start + 0x1000 1222 W(b) vector_pabt 1223 W(b) vector_dabt 1224 W(b) vector_addrexcptn 1225 W(b) vector_irq 1226 W(b) vector_fiq
|
/linux-4.1.27/arch/arm/lib/ |
D | memmove.S | 88 6: W(nop) 89 W(ldr) r3, [r1, #-4]! 90 W(ldr) r4, [r1, #-4]! 91 W(ldr) r5, [r1, #-4]! 92 W(ldr) r6, [r1, #-4]! 93 W(ldr) r7, [r1, #-4]! 94 W(ldr) r8, [r1, #-4]! 95 W(ldr) lr, [r1, #-4]! 99 W(nop) 100 W(str) r3, [r0, #-4]! [all …]
|
D | bitops.h | 16 ALT_SMP(W(pldw) [r1]) 17 ALT_UP(W(nop)) 43 ALT_SMP(W(pldw) [r1]) 44 ALT_UP(W(nop))
|
D | memcpy.S | 21 W(ldr) \reg, [\ptr], #4 37 W(str) \reg, [\ptr], #4
|
D | copy_from_user.S | 65 W(str) \reg, [\ptr], #4
|
D | copy_to_user.S | 45 W(ldr) \reg, [\ptr], #4
|
D | copy_template.S | 132 W(nop) 150 W(nop)
|
/linux-4.1.27/arch/blackfin/mach-common/ |
D | dpmc_modes.S | 21 R1 = W[P0](z); 23 W[P0] = R1.L; 79 W[P3] = R4.L; 108 R6 = W[P0](z); 110 W[P0] = R0.l; /* Set Max VCO to SCLK divider */ 114 R5 = W[P0](z); 116 W[P0] = R0.l; /* Set Min CLKIN to VCO multiplier */ 125 R7 = W[P0](z); 132 W[P0] = R2; /* Set Min Core Voltage */ 146 R0 = W[P0](z); [all …]
|
/linux-4.1.27/arch/m68k/fpsp040/ |
D | slogn.S | 436 |--LET V=U*U, W=V*V, CALCULATE 438 |--U + U*V*( [B1 + W*(B3 + W*B5)] + [V*(B2 + W*B4)] ) 443 fmulx %fp1,%fp1 | ...FP1 IS W 448 fmulx %fp1,%fp3 | ...W*B5 449 fmulx %fp1,%fp2 | ...W*B4 451 faddd LOGB3,%fp3 | ...B3+W*B5 452 faddd LOGB2,%fp2 | ...B2+W*B4 454 fmulx %fp3,%fp1 | ...W*(B3+W*B5), FP3 RELEASED 456 fmulx %fp0,%fp2 | ...V*(B2+W*B4) 458 faddd LOGB1,%fp1 | ...B1+W*(B3+W*B5) [all …]
|
D | setox.S | 509 | MOVE.W #$3FA5,EXPA3 ...load EXPA3 in cache 521 | MOVE.W #0,2(%a1) ...load 2^(J/64) in cache 653 | MOVE.W #$3F81,EM1A4 ...prefetch in CB mode 665 | MOVE.W #$3FDC,L2 ...prefetch L2 in CB mode 675 | MOVE.W #$3FC5,EM1A2 ...load EM1A2 in cache 688 | MOVE.W #0,2(%a1) ...load 2^(J/64) in cache
|
D | ssin.S | 484 fmulx FP_SCR2(%a6),%fp4 | ...W = N*P1 488 |--we want P+p = W+w but |p| <= half ulp of P 491 fsubx %fp3,%fp4 | ...W-P 494 faddx %fp5,%fp4 | ...FP4 is p = (W-P)+w
|
D | stan.S | 361 |--FIND THE REMAINDER OF (R,r) W.R.T. 2**L * (PI/2). L IS SO CHOSEN
|
/linux-4.1.27/arch/blackfin/lib/ |
D | ins.S | 97 R0 = W[P0]; \ 98 W[P1++] = R0; \ 102 R0 = W[P0]; \ 115 W[P1++] = R0; \ 117 W[P1++] = R0; \
|
D | outs.S | 36 .Lword_loop_s: R0 = W[P1++]; 37 .Lword_loop_e: W[P0] = R0; 66 .Lword8_loop_e: W[P0] = R0;
|
/linux-4.1.27/arch/arm/kvm/ |
D | init.S | 61 W(b) . 62 W(b) . 63 W(b) . 64 W(b) . 65 W(b) . 66 W(b) __do_hyp_init 67 W(b) . 68 W(b) .
|
/linux-4.1.27/drivers/net/wireless/ath/wil6210/ |
D | main.c | 529 #define W(a, v) do { iowrite32(v, wil->csr + HOSTADDR(a)); wmb(); } while (0) macro 531 #define S(a, v) W(a, R(a) | v) 533 #define C(a, v) W(a, R(a) & ~v) 537 W(RGF_USER_USER_CPU_0, BIT_USER_USER_CPU_MAN_RST); in wil_halt_cpu() 538 W(RGF_USER_MAC_CPU_0, BIT_USER_MAC_CPU_MAN_RST); in wil_halt_cpu() 544 W(RGF_USER_USER_CPU_0, 1); in wil_release_cpu() 562 W(RGF_USER_BL + offsetof(struct RGF_BL, ready), 0); in wil_target_reset() 580 W(RGF_USER_CLKS_CTL_EXT_SW_RST_VEC_0, 0x3ff81f); in wil_target_reset() 581 W(RGF_USER_CLKS_CTL_EXT_SW_RST_VEC_1, 0xf); in wil_target_reset() 583 W(RGF_USER_CLKS_CTL_SW_RST_VEC_2, 0xFE000000); in wil_target_reset() [all …]
|
D | interrupt.c | 167 #define W(a, v) do { iowrite32(v, wil->csr + HOSTADDR(a)); wmb(); } while (0) macro 180 W(RGF_DMA_ITR_TX_CNT_CTL, BIT_DMA_ITR_TX_CNT_CTL_CLR); in wil_configure_interrupt_moderation() 181 W(RGF_DMA_ITR_TX_CNT_TRSH, wil->tx_max_burst_duration); in wil_configure_interrupt_moderation() 185 W(RGF_DMA_ITR_TX_CNT_CTL, in wil_configure_interrupt_moderation() 189 W(RGF_DMA_ITR_TX_IDL_CNT_CTL, BIT_DMA_ITR_TX_IDL_CNT_CTL_CLR); in wil_configure_interrupt_moderation() 190 W(RGF_DMA_ITR_TX_IDL_CNT_TRSH, wil->tx_interframe_timeout); in wil_configure_interrupt_moderation() 194 W(RGF_DMA_ITR_TX_IDL_CNT_CTL, BIT_DMA_ITR_TX_IDL_CNT_CTL_EN | in wil_configure_interrupt_moderation() 198 W(RGF_DMA_ITR_RX_CNT_CTL, BIT_DMA_ITR_RX_CNT_CTL_CLR); in wil_configure_interrupt_moderation() 199 W(RGF_DMA_ITR_RX_CNT_TRSH, wil->rx_max_burst_duration); in wil_configure_interrupt_moderation() 203 W(RGF_DMA_ITR_RX_CNT_CTL, in wil_configure_interrupt_moderation() [all …]
|
D | fw.c | 29 #define W(a, v) do { iowrite32(v, wil->csr + HOSTADDR(a)); wmb(); } while (0) macro 31 #define S(a, v) W(a, R(a) | v) 33 #define C(a, v) W(a, R(a) & ~v)
|
/linux-4.1.27/arch/arm/boot/compressed/ |
D | head.S | 900 W(b) __armv4_mmu_cache_on 901 W(b) __armv4_mmu_cache_off 907 W(b) __armv3_mpu_cache_on 908 W(b) __armv3_mpu_cache_off 909 W(b) __armv3_mpu_cache_flush 913 W(b) __armv4_mpu_cache_on 914 W(b) __armv4_mpu_cache_off 915 W(b) __armv4_mpu_cache_flush 919 W(b) __arm926ejs_mmu_cache_on 920 W(b) __armv4_mmu_cache_off [all …]
|
/linux-4.1.27/arch/x86/kernel/kprobes/ |
D | core.c | 70 #define W(row, b0, b1, b2, b3, b4, b5, b6, b7, b8, b9, ba, bb, bc, bd, be, bf)\ macro 86 W(0x00, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0) | /* 00 */ 87 W(0x10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1) , /* 10 */ 88 W(0x20, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* 20 */ 89 W(0x30, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 30 */ 90 W(0x40, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* 40 */ 91 W(0x50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 50 */ 92 W(0x60, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1) | /* 60 */ 93 W(0x70, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1) , /* 70 */ 94 W(0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* 80 */ [all …]
|
/linux-4.1.27/ |
D | CREDITS | 5 (W), PGP key ID and fingerprint (P), description (D), and 25 W: http://www.arbornet.org/~dragos 33 W: http://alumnus.caltech.edu/~madler/ 45 W: http://www.csn.ul.ie/~airlied 53 W: http://www.moses.uklinux.net/patches 61 W: http://www.almesberger.net/ 76 W: http://www-stu.christs.cam.ac.uk/~aia21/ 84 W: http://www.pdos.lcs.mit.edu/~cananian 95 W: http://www.codepoet.org/ 105 W: http://www.subcarrier.org/mang [all …]
|
D | MAINTAINERS | 76 W: Web-page with status/info 140 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS) 143 W: http://www.lsi.com 177 W: http://serial.sourceforge.net 193 W: http://swik.net/v9fs 208 W: http://linuxtv.org/ 209 W: http://palosaari.fi/linux/ 218 W: http://www.adaptec.com/ 251 W: http://piie.net/?section=acerhdf 265 W: https://01.org/linux-acpi [all …]
|
D | .mailmap | 43 Felipe W Damasio <felipewd@terra.com.br> 75 Kenneth W Chen <kenneth.w.chen@intel.com>
|
/linux-4.1.27/drivers/atm/ |
D | Kconfig | 85 when going from 8W to 16W bursts. 88 bool "Enable 16W TX bursts (discouraged)" 95 bool "Enable 8W TX bursts (recommended)" 102 bool "Enable 4W TX bursts (optional)" 106 this if you have disabled 8W bursts. Enabling 4W if 8W is also set 110 bool "Enable 2W TX bursts (optional)" 114 this if you have disabled 4W and 8W bursts. Enabling 2W if 4W or 8W 118 bool "Enable 16W RX bursts (discouraged)" 125 bool "Enable 8W RX bursts (discouraged)" 133 bool "Enable 4W RX bursts (recommended)" [all …]
|
/linux-4.1.27/Documentation/leds/ |
D | leds-lp5562.txt | 21 Value : RGB or W 37 Engine mux has two different mode, RGB and W. 38 RGB is used for loading RGB program data, W is used for W program data. 50 echo "W" > /sys/bus/i2c/devices/xxxx/engine_mux 89 .name = "W",
|
/linux-4.1.27/lib/ |
D | sha1.c | 37 #define setW(x, val) (*(volatile __u32 *)&W(x) = (val)) 39 #define setW(x, val) do { W(x) = (val); __asm__("":::"memory"); } while (0) 41 #define setW(x, val) (W(x) = (val)) 45 #define W(x) (array[(x)&15]) macro 52 #define SHA_MIX(t) rol32(W(t+13) ^ W(t+8) ^ W(t+2) ^ W(t), 1)
|
/linux-4.1.27/Documentation/sound/alsa/ |
D | serial-u16550.txt | 9 2 - Midiator MS-124W S/A mode (2) 10 3 - MS-124W M/B mode support (3) 13 For the Midiator MS-124W, you must set the physical M-S and A-B 45 In MS-124W S/A mode, one raw MIDI substream is supported (midiCnD0); 54 In MS-124W M/B mode, the driver supports 16 ALSA raw MIDI substreams; 70 The MS-124W hardware's M/A mode is currently not supported. This mode allows 77 Midiator models other than MS-124W and MS-124T are currently not supported. 81 but no units to experiment with. The MS-124W support is tested with a real unit.
|
D | README.maya44 | 143 H/W: Output source channel 1 144 H/W 1: Output source channel 2 145 H/W 2: Output source channel 3 146 H/W 3: Output source channel 4 148 H/W 4 ... H/W 9: unknown function, left in to enable testing.
|
D | Procfile.txt | 107 shown also when the invalid H/W pointer is detected at the 125 H/W position, etc.
|
/linux-4.1.27/arch/blackfin/kernel/ |
D | trace.c | 403 int W = ((opcode >> DspLDST_W_bits) & DspLDST_W_mask); in decode_dspLDST_0() local 407 if (W == 0) { in decode_dspLDST_0() 433 if (W == 1) { in decode_dspLDST_0() 465 int W = ((opcode >> LDST_W_bits) & LDST_W_mask); in decode_LDST_0() local 471 if (W == 0) in decode_LDST_0() 495 if (W == 1) in decode_LDST_0() 526 int W = ((opcode >> LDSTii_W_bit) & LDSTii_W_mask); in decode_LDSTii_0() local 528 if (W == 0) { in decode_LDSTii_0() 560 int W = ((opcode >> LDSTidxI_W_bits) & LDSTidxI_W_mask); in decode_LDSTidxI_0() local 566 if (W == 0) in decode_LDSTidxI_0() [all …]
|
/linux-4.1.27/arch/powerpc/kernel/ |
D | prom_init.c | 642 #define W(x) ((x) >> 24) & 0xff, ((x) >> 16) & 0xff, \ macro 646 W(0xfffe0000), W(0x003a0000), /* POWER5/POWER5+ */ 647 W(0xffff0000), W(0x003e0000), /* POWER6 */ 648 W(0xffff0000), W(0x003f0000), /* POWER7 */ 649 W(0xffff0000), W(0x004b0000), /* POWER8E */ 650 W(0xffff0000), W(0x004c0000), /* POWER8NVL */ 651 W(0xffff0000), W(0x004d0000), /* POWER8 */ 652 W(0xffffffff), W(0x0f000004), /* all 2.07-compliant */ 653 W(0xffffffff), W(0x0f000003), /* all 2.06-compliant */ 654 W(0xffffffff), W(0x0f000002), /* all 2.05-compliant */ [all …]
|
/linux-4.1.27/arch/arm/mm/ |
D | cache-v7.S | 277 ALT_SMP(W(dsb)) 278 ALT_UP(W(nop)) 330 ALT_SMP(W(dsb)) 331 ALT_UP(W(nop)) 358 ALT_SMP(W(dsb)) 359 ALT_UP(W(nop)) 385 ALT_SMP(W(dsb)) 386 ALT_UP(W(nop)) 407 ALT_SMP(W(dsb)) 408 ALT_UP(W(nop))
|
D | tlb-v7.S | 43 ALT_SMP(W(mov) r3, #0 ) 44 ALT_UP(W(nop) )
|
D | proc-v7-3level.S | 98 ALT_SMP(W(nop))
|
D | proc-v7-2level.S | 110 ALT_SMP(W(nop))
|
D | alignment.c | 661 u32 W = ((L<<Rn) & (tinstr&255)) ? 0 : 1<<21; in thumb2arm() local 663 return 0xe8800000 | W | (L<<20) | (Rn<<16) | in thumb2arm()
|
D | proc-v7.S | 78 ALT_SMP(W(nop)) @ MP extensions imply L1 PTW
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/ |
D | shmobile.txt | 22 - R-Car M2-W (R8A77910) 40 - BOCK-W 42 - BOCK-W - Reference Device Tree Implementation
|
/linux-4.1.27/Documentation/zh_CN/ |
D | IRQ.txt | 9 Maintainer: Eric W. Biederman <ebiederman@xmission.com> 17 英文版维护者: Eric W. Biederman <ebiederman@xmission.com>
|
D | CodingStyle | 678 The C Programming Language, 第二版, 作者Brian W. Kernighan和Denni 682 The Practice of Programming 作者Brian W. Kernighan和Rob Pike. Addison-Wesley,
|
D | oops-tracing.txt | 178 Dr. G.W. Wettstein Oncology Research Div. Computing Facility
|
/linux-4.1.27/arch/arm/include/asm/ |
D | unified.h | 47 #define W(instr) instr.w macro 61 #define W(instr) instr
|
D | assembler.h | 251 W(b) . + up_b_offset ;\ 279 ALT_SMP(W(dmb) ish) 289 ALT_UP(W(nop))
|
/linux-4.1.27/Documentation/video4linux/bttv/ |
D | Tuners | 96 TADC-H002F: NTSC (L,175/410?; 2-B, C-W+11, W+12-69) 98 TADC-T003F: NTSC Taiwan (L,175/410?; 2-B, C-W+11, W+12-69)
|
D | Cards | 156 Rev.W = Flyvideo 98 (no eeprom) 180 this name is re-used for LR50 Rev.W.
|
/linux-4.1.27/Documentation/virtual/kvm/ |
D | locking.txt | 17 we just need change the W bit of the spte. 26 On fast page fault path, we will use cmpxchg to atomically set the spte W 55 if (cmpxchg(spte, old_spte, old_spte+W) 83 spte.W = 0 93 old_spte.W == 0) 96 spte.W = 1
|
/linux-4.1.27/Documentation/input/ |
D | sentelic.txt | 18 1 |Y|X|y|x|1|M|R|L| 2 |X|X|X|X|X|X|X|X| 3 |Y|Y|Y|Y|Y|Y|Y|Y| 4 | | |B|F|W|W|W|W| 719 *only supported by H/W prior to Cx 727 *only supported by H/W prior to Cx 746 *only supported by H/W prior to Cx 752 *only supported by H/W prior to Cx 757 *only supported by H/W prior to Cx 761 *only supported by H/W prior to Cx 766 *only supported by H/W prior to Cx 771 *only supported by H/W prior to Cx 776 *only supported by H/W prior to Cx [all …]
|
D | amijoy.txt | 117 JOYTEST 036 W Denise Write to all 4 joystick-mouse counters at once. 159 POTGO 034 W Paula Pot port (4 bit) bi-direction and data, and pot counter start.
|
D | gamepad.txt | 21 | <===DP===> |SE| |ST| (W) -|- (E) | |
|
/linux-4.1.27/Documentation/hwmon/ |
D | nct7904 | 38 pwm[1-4]_enable R/W, 1/2 for manual or SmartFan mode 42 pwm[1-4] R/O in SmartFan mode, R/W in manual control mode
|
D | ltc4215 | 11 Author: Ira W. Snyder <iws@ovro.caltech.edu>
|
D | ds620 | 13 Christian W. Zuckschwerdt <zany@triq.net>
|
D | max6639 | 24 Attribute R/W Contents
|
D | ltc4245 | 11 Author: Ira W. Snyder <iws@ovro.caltech.edu>
|
D | ina209 | 12 Author: Ira W. Snyder <iws@ovro.caltech.edu>
|
D | abituguru-datasheet | 211 Bank 0x23 Sensor Bank1 Settings (W) 246 Bank 0x25 PWM outputs for FAN's (W) 287 Bank 0x28 Sensors Bank2 Settings (W)
|
D | ds1621 | 31 Christian W. Zuckschwerdt <zany@triq.net>
|
D | lm90 | 201 * The G variant is lead-free, otherwise similar to the W.
|
/linux-4.1.27/scripts/ |
D | Makefile.extrawarn | 14 export KBUILD_ENABLE_EXTRA_GCC_CHECKS := $(W) 54 $(error W=$(KBUILD_ENABLE_EXTRA_GCC_CHECKS) is unknown)
|
D | Kbuild.include | 129 …$(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) -W$(strip $(1)) -c -x c /dev/null -o "$$TMP",-Wno-$(stri…
|
/linux-4.1.27/arch/x86/include/asm/ |
D | inst.h | 196 .macro PFX_REX opd1 opd2 W=0 197 .if ((\opd1 | \opd2) & 8) || \W 198 .byte 0x40 | ((\opd1 & 8) >> 3) | ((\opd2 & 8) >> 1) | (\W << 3)
|
/linux-4.1.27/include/linux/ |
D | cryptohash.h | 11 void sha_transform(__u32 *digest, const char *data, __u32 *W);
|
/linux-4.1.27/arch/arm/mach-shmobile/ |
D | Kconfig | 79 bool "R-Car M2-W (R8A77910)" 146 bool "BOCK-W platform" 155 bool "BOCK-W - Reference Device Tree Implementation"
|
/linux-4.1.27/arch/blackfin/include/asm/ |
D | uaccess.h | 85 __put_user_asm(_x, _p, W); \ 142 __get_user_asm(_val, _p, W, (Z)); \
|
D | entry.h | 46 dreg.l = W[preg]; \
|
/linux-4.1.27/Documentation/devicetree/bindings/iommu/ |
D | nvidia,tegra30-smmu.txt | 1 NVIDIA Tegra 30 IOMMU H/W, SMMU (System Memory Management Unit)
|
D | samsung,sysmmu.txt | 1 Samsung Exynos IOMMU H/W, System MMU (System Memory Management Unit)
|
/linux-4.1.27/Documentation/devicetree/bindings/ata/ |
D | sata_rcar.txt | 9 - "renesas,sata-r8a7791" for R-Car M2-W
|
/linux-4.1.27/drivers/gpu/drm/gma500/ |
D | intel_gmbus.c | 38 #define _wait_for(COND, MS, W) ({ \ argument 46 if (W && !(in_atomic() || in_dbg_master())) msleep(W); \
|
D | cdv_intel_display.c | 122 #define _wait_for(COND, MS, W) ({ \ argument 130 if (W && !in_dbg_master()) \ 131 msleep(W); \
|
D | cdv_intel_dp.c | 235 #define _wait_for(COND, MS, W) ({ \ argument 243 if (W && !in_dbg_master()) msleep(W); \
|
/linux-4.1.27/Documentation/devicetree/bindings/mfd/ |
D | syscon.txt | 1 * System Controller Registers R/W driver
|
/linux-4.1.27/Documentation/security/ |
D | keys-request-key.txt | 107 and come up with key W. 110 instantiate key U, using key W as a reference (perhaps it contacts a 119 This also extends further. If key W (step 7 above) didn't exist, key W would
|
/linux-4.1.27/Documentation/devicetree/bindings/sound/ |
D | rt5640.txt | 50 interrupts = <TEGRA_GPIO(W, 3) GPIO_ACTIVE_HIGH>;
|
D | rt5677.txt | 66 interrupts = <TEGRA_GPIO(W, 3) GPIO_ACTIVE_HIGH>;
|
D | renesas,rsnd.txt | 9 - "renesas,rcar_sound-r8a7791" (R-Car M2-W)
|
/linux-4.1.27/drivers/gpu/drm/i2c/ |
D | Kconfig | 8 Support for the Analog Device ADV7511(W) and ADV7513 HDMI encoders.
|
/linux-4.1.27/Documentation/devicetree/bindings/thermal/ |
D | rcar-thermal.txt | 10 - "renesas,thermal-r8a7791" (R-Car M2-W)
|
/linux-4.1.27/Documentation/devicetree/bindings/interrupt-controller/ |
D | renesas,irqc.txt | 9 - "renesas,irqc-r8a7791" (R-Car M2-W)
|
/linux-4.1.27/Documentation/devicetree/bindings/input/ |
D | atmel,maxtouch.txt | 31 interrupts = <TEGRA_GPIO(W, 3) IRQ_TYPE_LEVEL_LOW>;
|
D | cros-ec-keyb.txt | 66 /* E R W I */
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | tegra20-iris-512.dts | 88 gpio = <&gpio TEGRA_GPIO(W, 2) GPIO_ACTIVE_HIGH>;
|
D | imx51-digi-connectcore-jsk.dts | 15 model = "Digi ConnectCore CC(W)-MX51 JSK";
|
D | tegra20-plutux.dts | 54 nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2) GPIO_ACTIVE_HIGH>;
|
D | tegra20-tec.dts | 62 nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2)
|
D | tegra20-medcom-wide.dts | 82 nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2) GPIO_ACTIVE_HIGH>;
|
D | r8a7778-bockw-reference.dts | 2 * Reference Device Tree Source for the Bock-W board
|
D | tegra30-colibri-eval-v3.dts | 204 gpio = <&gpio TEGRA_GPIO(W, 2) GPIO_ACTIVE_LOW>;
|
D | r8a7778-bockw.dts | 2 * Reference Device Tree Source for the Bock-W board
|
D | tegra30-cardhu.dtsi | 219 interrupts = <TEGRA_GPIO(W, 3) IRQ_TYPE_LEVEL_HIGH>; 610 nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2)
|
D | tegra30-apalis.dtsi | 607 interrupts = <TEGRA_GPIO(W, 3) GPIO_ACTIVE_LOW>; 622 interrupts = <TEGRA_GPIO(W, 2) GPIO_ACTIVE_LOW>;
|
D | tegra20-ventana.dts | 667 gpio = <&gpio TEGRA_GPIO(W, 0) GPIO_ACTIVE_HIGH>; 691 nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2) GPIO_ACTIVE_HIGH>;
|
D | imx51-digi-connectcore-som.dtsi | 16 model = "Digi ConnectCore CC(W)-MX51";
|
D | tegra20-harmony.dts | 730 gpio = <&gpio TEGRA_GPIO(W, 0) GPIO_ACTIVE_HIGH>; 765 nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2)
|
D | tegra20-paz00.dts | 590 nvidia,hp-det-gpios = <&gpio TEGRA_GPIO(W, 2)
|
D | tegra124-nyan.dtsi | 79 interrupts = <TEGRA_GPIO(W, 3) IRQ_TYPE_EDGE_FALLING>;
|
/linux-4.1.27/Documentation/RCU/ |
D | trace.txt | 151 "W" Indicates that there are callbacks queued that are 192 …1 c=14407 g=14408 pq=1/0 qp=0 dt=100679/140000000000000/0 df=378 of=7 ql=0/119 qs=NRW. kt=0/W ktl=… 193 …2 c=14407 g=14408 pq=1/0 qp=0 dt=105486/0/0 df=90 of=9 ql=0/89 qs=NRW. kt=0/W ktl=c0c b=10 ci=8311… 194 …3 c=14407 g=14408 pq=1/0 qp=0 dt=107138/0/0 df=142 of=8 ql=0/188 qs=NRW. kt=0/W ktl=b96 b=10 ci=12… 195 …4 c=14405 g=14406 pq=1/0 qp=1 dt=50238/0/0 df=706 of=7 ql=0/0 qs=.... kt=0/W ktl=812 b=10 ci=34929… 197 …6 c=14404 g=14405 pq=1/0 qp=0 dt=59454/0/0 df=94 of=6 ql=0/0 qs=.... kt=0/W ktl=e57 b=10 ci=55597 … 198 …7 c=14407 g=14408 pq=1/0 qp=1 dt=68850/0/0 df=31 of=8 ql=0/0 qs=.... kt=0/W ktl=14bd b=10 ci=77475… 214 "W" The kernel thread is waiting because there is no work 444 0:3 tasks=.... kt=W ntb=0 neb=0 nnb=0 j=c864 bt=c894 446 4:7 tasks=.... kt=W ntb=0 neb=0 nnb=0 j=c864 bt=c894 [all …]
|
D | RTFP.txt | 355 ,author="James P. Hennessy and Damian L. Osisek and Joseph W. {Seigh II}" 855 ,author="J. Appavoo and K. Hui and C. A. N. Soules and R. W. Wisniewski and 872 ,author="Joseph W. {Seigh II}" 904 Michael Stumm and Robert W. Wisniewski and Marc Auslander and 1688 ,author = {Silva, Dilma Da and Krieger, Orran and Wisniewski, Robert W. and Waterland, Amos and Tam… 1778 …ski, Michal and Rosenburg, Bryan and Waterland, Amos and Wisniewski, Robert W. and Xenidis, Jimi a… 2537 ,author = {Josh Triplett and Philip W. Howard and Paul E. McKenney and Jonathan Walpole} 2546 ,author = {Philip W. Howard and Jonathan Walpole}
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | configfs-usb-gadget-mass-storage | 25 to open "filename" in R/W mode.
|
D | sysfs-bus-coresight-devices-etm3x | 177 Description: (W) Cancels all configuration on a trace unit and set it back
|
/linux-4.1.27/Documentation/pti/ |
D | pti_intel_mid.txt | 64 g_fd_source = open(ONE_TTY, O_RDWR); // must be R/W 65 g_fd_sink = open(TWO_TTY, O_RDWR); // must be R/W
|
/linux-4.1.27/arch/avr32/mm/ |
D | tlb.c | 45 SYSREG_BFEXT(W, tlbelo) ? 'W' : ' ', in show_dtlb_entry() 344 SYSREG_BFEXT(W, tlbelo) ? '1' : '0', in tlb_show()
|
/linux-4.1.27/arch/arc/mm/ |
D | tlbex.S | 318 ; VERIFY_PTE: Chk if PTE permissions approp for data access (R/W/R+W) 334 ; Above laddering takes care of XCHG access (both R and W)
|
/linux-4.1.27/drivers/gpu/drm/i915/ |
D | i915_cmd_parser.c | 110 #define W CMD_DESC_REGISTER macro 125 CMD( MI_LOAD_REGISTER_IMM(1), SMI, !F, 0xFF, W, 127 CMD( MI_STORE_REGISTER_MEM(1), SMI, !F, 0xFF, W | B, 134 CMD( MI_LOAD_REGISTER_MEM, SMI, !F, 0xFF, W | B, 360 #undef W
|
D | intel_drv.h | 48 #define _wait_for(COND, MS, W) ({ \ argument 57 if ((W) && drm_can_sleep()) { \ 58 usleep_range((W)*1000, (W)*2000); \
|
/linux-4.1.27/Documentation/devicetree/bindings/i2c/ |
D | i2c-sh_mobile.txt | 9 - "renesas,iic-r8a7791" (R-Car M2-W)
|
/linux-4.1.27/drivers/net/wireless/ath/ath9k/ |
D | mci.h | 117 u8 W; /* Voice: Wvoice, HID: Sniff timeout, in slots */ member
|
/linux-4.1.27/Documentation/ |
D | SubmitChecklist | 87 22: Newly-added code has been compiled with `gcc -W' (use "make 88 EXTRA_CFLAGS=-W"). This will generate lots of noise, but is good for
|
D | oops-tracing.txt | 214 Dr. G.W. Wettstein Oncology Research Div. Computing Facility 258 10: 'W' if a warning has previously been issued by the kernel.
|
D | unicode.txt | 140 U+F8E7 KLINGON LETTER W
|
D | memory-barriers.txt | 1771 (*) R/W spin locks 1774 (*) R/W semaphores 2272 Consider, for example, the R/W semaphore slow path. Here a waiting process is 2927 ACCESS_ONCE(*A) = W; 2936 X == W 2943 U=LOAD *A, STORE *A=V, STORE *A=W, X=LOAD *A, STORE *A=Y, Z=LOAD *A 2960 *A = W; 2964 *A = W;
|
/linux-4.1.27/Documentation/devicetree/bindings/video/ |
D | rockchip-vop.txt | 20 hclk_vop: for ahb bus to R/W the phy regs.
|
D | adi,adv7511.txt | 1 Analog Device ADV7511(W)/13 HDMI Encoders
|
/linux-4.1.27/Documentation/ja_JP/ |
D | SubmitChecklist | 104 22: 新たに追加したコードは、`gcc -W'でコンパイルしてください。
|
D | HOWTO | 65 -『プログラミング言語C第2版』(B.W. カーニハン/D.M. リッチー著 石田晴久訳) [共立出版]
|
/linux-4.1.27/Documentation/parisc/ |
D | registers | 52 W (64-bit addresses) 0 75 PSW default W value 0
|
/linux-4.1.27/Documentation/locking/ |
D | lockstat.txt | 90 06 &mm->mmap_sem-W: 46 84 0.26 939… 175 …tasklist_lock-W: 40667 41130 0.23 1189.42 428980.51 …
|
/linux-4.1.27/arch/s390/include/asm/ |
D | cpu_mf.h | 108 unsigned int W:1; /* 27 PSW wait state */ member
|
/linux-4.1.27/arch/arm/ |
D | Kconfig-nommu | 43 occupied by read-only memory depending on H/W design.
|
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/4xx/ |
D | ppc440spe-adma.txt | 6 by ADMA driver for configuration of RAID-6 H/W capabilities of
|
/linux-4.1.27/Documentation/devicetree/bindings/gpio/ |
D | renesas,gpio-rcar.txt | 9 - "renesas,gpio-r8a7791": for R8A7791 (R-Car M2-W) compatible GPIO controller.
|
/linux-4.1.27/scripts/coccinelle/misc/ |
D | boolinit.cocci | 3 /// and Bruce W Allan.
|
/linux-4.1.27/Documentation/devicetree/bindings/spi/ |
D | spi-rspi.txt | 14 - "renesas,qspi-r8a7791" (R-Car M2-W)
|
D | sh-msiof.txt | 9 "renesas,msiof-r8a7791" (R-Car M2-W)
|
/linux-4.1.27/Documentation/kbuild/ |
D | kbuild.txt | 206 If enabled over the make command line with "W=1", it turns on additional 207 gcc -W... options for more extensive build-time checking.
|
/linux-4.1.27/tools/testing/selftests/rcutorture/doc/ |
D | initrd.txt | 40 echo "W: devtmpfs not available, falling back to tmpfs for /dev"
|
/linux-4.1.27/arch/x86/kvm/ |
D | Kconfig | 85 This option adds a R/W kVM module parameter 'mmu_audit', which allows
|
/linux-4.1.27/Documentation/trace/ |
D | mmiotrace.txt | 134 write event W width, timestamp, map id, physical, value, PC, PID 153 $ awk '/W 4 / { adr=strtonum($5); if (adr >= 0xfb73ce40 &&
|
/linux-4.1.27/Documentation/scsi/ |
D | dc395x.txt | 6 The driver has been tested with CD-R and CD-R/W drives. These should
|
D | aic7xxx.txt | 57 AHA-274X[A]W aic7770 EISA SE-HD68F SE-HD68F 75 AHA-2944W aic7870 PCI/32 HVD-HD68F HVD-HD68F 77 AHA-3940W aic7870 PCI/32 2 X SE-HD68F SE-HD68F 2
|
D | hptiop.txt | 170 NAME R/W Description
|
D | ChangeLog.megaraid | 80 Root Cause: MegaRAID F/W handle the INQUIRY with EVPD bit set 82 Fix: MegaRAID F/W has fixed the problem and being process of release,
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf-script.txt | 149 the override, and the result of the above is that only S/W and H/W
|
D | perf-report.txt | 300 file must have been obtained using perf record -d -W and using a
|
/linux-4.1.27/drivers/net/wireless/ |
D | Kconfig | 232 SMC 2635W 237 SMC 2602W V2 EU
|
/linux-4.1.27/Documentation/filesystems/ |
D | afs.txt | 95 whether you definitely want a R/W volume (hash) or whether you'd prefer a R/O 96 volume, but are willing to use a R/W volume instead (percent).
|
D | affs.txt | 96 - If both W and D are allowed, w will be set. 116 - w permission will set W and D for user, group and others.
|
D | gfs2-glocks.txt | 142 Volume 1", W. Richard Stevens, sect 21.3, "Round-Trip Time Measurement",
|
/linux-4.1.27/Documentation/networking/ |
D | ipddp.txt | 71 questions regarding decapsulation or encapsulation. Bradford W. Johnson
|
D | arcnet-hardware.txt | 785 < e | W | 5 1296 | e | W | ID4 1512 > _______________ _____________________ e | W | ID4 1671 | | | |W | 1917 | > RAM (2k) | |______|| | | W | 2767 | |_____________| | || y | | W | ID4 2929 | 74LS373 | |- 5 | W | |
|
/linux-4.1.27/arch/x86/lib/ |
D | x86-opcode-map.txt | 112 48: DEC eAX (i64) | REX.W (o64) 211 a5: MOVS/W/D/Q Yv,Xv 213 a7: CMPS/W/D Xv,Yv 217 ab: STOS/W/D/Q Yv,rAX 219 ad: LODS/W/D/Q rAX,Xv 223 af: SCAS/W/D/Q rAX,Yv
|
/linux-4.1.27/scripts/genksyms/ |
D | keywords.hash.c_shipped | 17 && ('V' == 86) && ('W' == 87) && ('X' == 88) && ('Y' == 89) \
|
/linux-4.1.27/Documentation/devicetree/bindings/leds/ |
D | leds-lp55xx.txt | 159 chan-name = "W";
|
/linux-4.1.27/Documentation/devicetree/bindings/dma/ |
D | ste-dma40.txt | 13 the driver will attempt to obtain the information from H/W
|
/linux-4.1.27/drivers/s390/char/ |
D | defkeymap.map | 106 keycode 102 = Atilde W
|
/linux-4.1.27/Documentation/DocBook/media/ |
D | bayer.png.b64 | 108 jcFascDgc9m7MVhGj+7tcDeEA9bp8bUGH1uwAoH1tbuDxI4LB7KBsR08WBP2AP6Rb/5QAjtkGg+W
|
D | pipeline.png.b64 | 27 W+8F1l+GYDU0hG99P9/gVxiEKxiGvYPMoCMjT2a8fxyRQkQw9HpJg3EBGAmsr4PDz8Eaxz4F+UBf
|
D | dvbstb.png.b64 | 176 fRsKhQIAEBcXpzLM2NgYAJCSkoK7d+9W+fedkZHBBv9ERMTqYlQjODo64o8//kBCQkKBw8+fP4/u
|
/linux-4.1.27/Documentation/x86/ |
D | mtrr.txt | 126 Richard Gooch, c/o ATNF, P. O. Box 76, Epping, N.S.W., 2121, Australia. 222 Richard Gooch, c/o ATNF, P. O. Box 76, Epping, N.S.W., 2121, Australia.
|
D | earlyprintk.txt | 126 …how-all-timers(Q) unRaw Sync show-task-states(T) Unmount show-blocked-tasks(W) dump-ftrace-buffer(…
|
/linux-4.1.27/Documentation/ioctl/ |
D | ioctl-number.txt | 185 'W' 00-1F linux/watchdog.h conflict! 186 'W' 00-1F linux/wanrouter.h conflict! (pre 3.9) 187 'W' 00-3F sound/asound.h conflict!
|
/linux-4.1.27/Documentation/usb/ |
D | rio.txt | 19 W A R N I N G:
|
D | gadget_printer.txt | 5 Copyright (C) 2007 Craig W. Nadler <craig@nadler.us>
|
D | usb-serial.txt | 177 The USA-18X, USA-28X, USA-19, USA-19W and USA-49W are supported and
|
/linux-4.1.27/arch/sh/kernel/cpu/sh3/ |
D | entry.S | 99 ! It can be valid access, such as stack grow and/or C-O-W.
|
/linux-4.1.27/Documentation/isdn/ |
D | README.icn | 7 97078 Würzburg
|
/linux-4.1.27/drivers/usb/serial/ |
D | Kconfig | 364 bool "USB Keyspan USA-19W Firmware" 367 Say Y here to include firmware for the USA-19W converter. 382 bool "USB Keyspan USA-49W Firmware" 385 Say Y here to include firmware for the USA-49W converter.
|
/linux-4.1.27/Documentation/video4linux/ |
D | CARDLIST.bttv | 162 161 -> Aposonic W-DVR [0279:0228]
|
/linux-4.1.27/Documentation/device-mapper/ |
D | log-writes.txt | 26 following example (W means write, C means complete):
|
/linux-4.1.27/arch/s390/kernel/ |
D | perf_cpum_sf.c | 1003 if (sfr->basic.W) in perf_push_sample() 1083 if (sample->basic.I || sample->basic.W) in sample_is_consistent()
|
/linux-4.1.27/arch/mips/ |
D | Kconfig | 1870 # CPU may reorder R->R, R->W, W->R, W->W 1878 # CPU may reorder R->LL, R->LL, W->LL, W->LL, R->SC, R->SC, W->SC, W->SC
|
/linux-4.1.27/Documentation/dvb/ |
D | ci.txt | 202 | do (H/W dep) |
|
/linux-4.1.27/scripts/kconfig/ |
D | zconf.hash.c_shipped | 17 && ('V' == 86) && ('W' == 87) && ('X' == 88) && ('Y' == 89) \
|
/linux-4.1.27/arch/m68k/ifpsp060/src/ |
D | fpsp.S | 5625 #--FIND THE REMAINDER OF (R,r) W.R.T. 2**L * (PI/2). L IS SO CHOSEN 6104 fmul.x FP_SCR0(%a6),%fp4 # fp4 = W = N*P1 6107 fmov.x %fp4,%fp3 # fp3 = W = N*P1 6109 #--we want P+p = W+w but |p| <= half ulp of P 6112 fsub.x %fp3,%fp4 # fp4 = W-P 6115 fadd.x %fp5,%fp4 # fp4 = p = (W-P)+w 8446 #--LET V=U*U, W=V*V, CALCULATE 8448 #--U + U*V*( [B1 + W*(B3 + W*B5)] + [V*(B2 + W*B4)] ) 8453 fmul.x %fp1,%fp1 # FP1 IS W 8458 fmul.x %fp1,%fp3 # W*B5 [all …]
|
/linux-4.1.27/Documentation/filesystems/caching/ |
D | fscache.txt | 150 PG0 PG1 PG2 PG0 XATTR PG0 PG1 DIRENT DIRENT DIRENT R/W R/O Bak 394 W Show objects that have pending writes
|
/linux-4.1.27/kernel/bpf/ |
D | core.c | 539 LDST(W, u32) in __bpf_prog_run()
|
/linux-4.1.27/drivers/iommu/ |
D | Kconfig | 231 processor family. This enables H/W multimedia accelerators to see
|
/linux-4.1.27/arch/parisc/kernel/ |
D | perf_asm.S | 130 ; NOTE: The PCX-W ERS states that DR2_SLOW_RET must be set before any
|
/linux-4.1.27/Documentation/ide/ |
D | ide.txt | 246 LS120/240) devices, removable R/W cartridges, and for high capacity hard disk
|
/linux-4.1.27/drivers/eisa/ |
D | eisa.ids | 879 ISA9103 "QUADEMS+ W/IO" 1042 ISAD800 "AMI SMART PACK 2 W/ PAL 5.1" 1043 ISAD801 "AMI SMART PACK 2 W/ PAL 6.1" 1044 ISAD802 "AMI SMART PACK 2 W/ PAL 6.2"
|
/linux-4.1.27/drivers/mtd/ |
D | Kconfig | 286 This enables EXPERIMENTAL R/W support for SmartMedia/xD
|
/linux-4.1.27/kernel/sched/ |
D | fair.c | 4486 long w, W; in effective_load() local 4493 W = wg + calc_tg_weight(tg, se->my_q); in effective_load() 4503 if (W > 0 && w < W) in effective_load() 4504 wl = (w * (long)tg->shares) / W; in effective_load()
|