| /linux/tools/testing/selftests/net/netfilter/packetdrill/ |
| H A D | conntrack_ack_loss_stall.pkt | 6 // should set -P DROP but it disconnects VM w.o. extra netns 19 +0.0001 < P. 1:1461(1460) ack 1 win 257 21 +0.0001 < P. 1461:2921(1460) ack 1 win 257 23 +0.0001 < P. 2921:4381(1460) ack 1 win 257 25 +0.0001 < P. 4381:5841(1460) ack 1 win 257 27 +0.0001 < P. 5841:7301(1460) ack 1 win 257 29 +0.0001 < P. 7301:8761(1460) ack 1 win 257 31 +0.0001 < P. 8761:10221(1460) ack 1 win 257 33 +0.0001 < P. 10221:11681(1460) ack 1 win 257 35 +0.0001 < P. 11681:13141(1460) ack 1 win 257 [all …]
|
| /linux/drivers/pinctrl/sunplus/ |
| H A D | sppctl_sp7021.c | 15 #define P(x, y) PINCTRL_PIN(D(x, y), D_PIS(x, y)) macro 65 P(0, 0), P(0, 1), P(0, 2), P(0, 3), P(0, 4), P(0, 5), P(0, 6), P(0, 7), 67 P(1, 0), P(1, 1), P(1, 2), P(1, 3), P(1, 4), P(1, 5), P(1, 6), P(1, 7), 68 P(2, 0), P(2, 1), P(2, 2), P(2, 3), P(2, 4), P(2, 5), P(2, 6), P(2, 7), 69 P(3, 0), P(3, 1), P(3, 2), P(3, 3), P(3, 4), P(3, 5), P(3, 6), P(3, 7), 70 P(4, 0), P(4, 1), P(4, 2), P(4, 3), P(4, 4), P(4, 5), P(4, 6), P(4, 7), 71 P(5, 0), P(5, 1), P(5, 2), P(5, 3), P(5, 4), P(5, 5), P(5, 6), P(5, 7), 72 P(6, 0), P(6, 1), P(6, 2), P(6, 3), P(6, 4), P(6, 5), P(6, 6), P(6, 7), 73 P(7, 0), P(7, 1), P(7, 2), P(7, 3), P(7, 4), P(7, 5), P(7, 6), P(7, 7), 74 P(8, 0), P(8, 1), P(8, 2), P(8, 3), P(8, 4), P(8, 5), P(8, 6), P(8, 7), [all …]
|
| /linux/rust/syn/ |
| H A D | punctuated.rs | 49 pub struct Punctuated<T, P> { 50 inner: Vec<(T, P)>, 54 impl<T, P> Punctuated<T, P> { 143 pub fn pairs(&self) -> Pairs<T, P> { in pairs() argument 152 pub fn pairs_mut(&mut self) -> PairsMut<T, P> { in pairs_mut() argument 161 pub fn into_pairs(self) -> IntoPairs<T, P> { in into_pairs() argument 196 pub fn push_punct(&mut self, punctuation: P) { in push_punct() argument 208 pub fn pop(&mut self) -> Option<Pair<T, P>> { in pop() argument 218 pub fn pop_punct(&mut self) -> Option<P> { in pop_punct() argument 249 P: Default, in push() [all …]
|
| /linux/scripts/coccinelle/api/ |
| H A D | string_choices.cocci | 23 position P; 26 * (E@P == 1) ? "" : "s" 28 * (E@P > 1) ? "s" : "" 32 p << str_plural_r.P; 46 position P; 48 * E@P ? "up" : "down" 51 p << str_up_down_r.P; 65 position P; 67 * E@P ? "down" : "up" 70 p << str_down_up_r.P; [all …]
|
| /linux/arch/x86/events/intel/ |
| H A D | ds.c | 118 #define P(a, b) PERF_MEM_S(a, b) macro 119 #define OP_LH (P(OP, LOAD) | P(LVL, HIT)) 120 #define LEVEL(x) P(LVLNUM, x) 121 #define REM P(REMOTE, REMOTE) 122 #define SNOOP_NONE_MISS (P(SNOOP, NONE) | P(SNOOP, MISS)) 126 P(OP, LOAD) | P(LVL, MISS) | LEVEL(L3) | P(SNOO [all...] |
| /linux/drivers/gpu/drm/nouveau/nvkm/subdev/clk/ |
| H A D | nv50.c | 58 int P, N, M, id; in read_pll_src() local 75 P = (coef & 0x00070000) >> 16; in read_pll_src() 83 P = (coef & 0x00070000) >> 16; in read_pll_src() 109 P = (nvkm_rd32(device, 0x00e824 + (id * 0x28)) >> 16) & 7; in read_pll_src() 110 P += (coef & 0x00070000) >> 16; in read_pll_src() 119 return (ref * N / M) >> P; in read_pll_src() 198 u32 P = 0; in nv50_clk_read() local 221 P = (nvkm_rd32(device, 0x004028) & 0x00070000) >> 16; in nv50_clk_read() 223 case 0x00000000: return nvkm_clk_read(&clk->base, nv_clk_src_crystal) >> P; in nv50_clk_read() 225 case 0x00000002: return read_pll(clk, 0x004020) >> P; in nv50_clk_read() [all …]
|
| H A D | pllgt215.c | 31 u32 freq, int *pN, int *pfN, int *pM, int *P) in gt215_pll_calc() argument 36 *P = info->vco1.max_freq / freq; in gt215_pll_calc() 37 if (*P > info->max_p) in gt215_pll_calc() 38 *P = info->max_p; in gt215_pll_calc() 39 if (*P < info->min_p) in gt215_pll_calc() 40 *P = info->min_p; in gt215_pll_calc() 49 u32 tmp = freq * *P * M; in gt215_pll_calc() 67 err = abs(freq - (info->refclk * N / M / *P)); in gt215_pll_calc() 86 return info->refclk * *pN / *pM / *P; in gt215_pll_calc()
|
| H A D | mcp77.c | 87 u32 P = 0; in mcp77_clk_read() local 107 P = (nvkm_rd32(device, 0x004028) & 0x00070000) >> 16; in mcp77_clk_read() 110 case 0x00000000: return nvkm_clk_read(&clk->base, nv_clk_src_crystal) >> P; in mcp77_clk_read() 112 case 0x00000002: return nvkm_clk_read(&clk->base, nv_clk_src_hclkm4) >> P; in mcp77_clk_read() 113 case 0x00000003: return read_pll(clk, 0x004028) >> P; in mcp77_clk_read() 130 P = (nvkm_rd32(device, 0x004020) & 0x00070000) >> 16; in mcp77_clk_read() 134 return nvkm_clk_read(&clk->base, nv_clk_src_href) >> P; in mcp77_clk_read() 135 return nvkm_clk_read(&clk->base, nv_clk_src_crystal) >> P; in mcp77_clk_read() 137 case 0x00000020: return read_pll(clk, 0x004028) >> P; in mcp77_clk_read() 138 case 0x00000030: return read_pll(clk, 0x004020) >> P; in mcp77_clk_read() [all …]
|
| H A D | pllnv04.c | 49 int M, N, thisP, P; in getMNP_single() local 73 P = 1 << maxP; in getMNP_single() 74 if ((clk * P) < minvco) { in getMNP_single() 84 P = 1 << thisP; in getMNP_single() 85 clkP = clk * P; in getMNP_single() 107 calcclk = ((N * crystal + P/2) / P + M/2) / M; in getMNP_single() 228 int *N1, int *M1, int *N2, int *M2, int *P) in nv04_pll_calc() argument 233 ret = getMNP_single(subdev, info, freq, N1, M1, P); in nv04_pll_calc() 239 ret = getMNP_double(subdev, info, freq, N1, M1, N2, M2, P); in nv04_pll_calc()
|
| /linux/tools/testing/selftests/net/packetdrill/ |
| H A D | tcp_slow_start_slow-start-ack-per-1pkt.pkt | 23 +0 > P. 1:10001(10000) ack 1 27 +0 > P. 10001:12001(2000) ack 1 30 +0 > P. 12001:14001(2000) ack 1 33 +0 > P. 14001:16001(2000) ack 1 36 +0 > P. 16001:18001(2000) ack 1 39 +0 > P. 18001:20001(2000) ack 1 42 +0 > P. 20001:22001(2000) ack 1 45 +0 > P. 22001:24001(2000) ack 1 48 +0 > P. 24001:26001(2000) ack 1 51 +0 > P. 26001:28001(2000) ack 1 [all …]
|
| H A D | tcp_slow_start_slow-start-fq-ack-per-2pkt.pkt | 27 +0 > P. 1:2921(2920) ack 1 28 +0 > P. 2921:5841(2920) ack 1 29 +0 > P. 5841:8761(2920) ack 1 30 +0 > P. 8761:11681(2920) ack 1 31 +0 > P. 11681:14601(2920) ack 1 42 +0 > P. 14601:17521(2920) ack 1 47 +.001 > P. 17521:20441(2920) ack 1 53 +.007 > P. 20441:23361(2920) ack 1 59 +.004 > P. 23361:26281(2920) ack 1 61 +.007 > P. 26281:29201(2920) ack 1
|
| H A D | tcp_dsack_mult.pkt | 20 +0 < P. 1001:2001(1000) ack 1 win 1024 24 +0 < P. 2001:3001(1000) ack 1 win 1024 28 +0 < P. 4001:5001(1000) ack 1 win 1024 32 +0 < P. 7001:8001(1000) ack 1 win 1024 36 +0 < P. 1:6001(6000) ack 1 win 1024 40 +0 < P. 6001:8001(2000) ack 1 win 1024 44 +0 < P. 1:1001(1000) ack 1 win 1024
|
| H A D | tcp_slow_start_slow-start-ack-per-2pkt.pkt | 24 +0 > P. 1:10001(10000) ack 1 28 +0 > P. 10001:14001(4000) ack 1 31 +0 > P. 14001:18001(4000) ack 1 34 +0 > P. 18001:22001(4000) ack 1 37 +0 > P. 22001:26001(4000) ack 1 40 +0 > P. 26001:30001(4000) ack 1
|
| H A D | tcp_rcv_big_endseq.pkt | 22 +0 < P. 1:4001(4000) ack 1 win 257 26 +0 < P. 4001:54001(50000) ack 1 win 257 30 +1 < P. 5001:55001(50000) ack 1 win 257 34 +0 < P. 70001:80001(10000) ack 1 win 257 40 +0 < P. 4001:54001(50000) ack 1 win 257
|
| /linux/rust/kernel/ |
| H A D | scatterlist.rs | 22 //! - An owned table ([`SGTable<Owned<P>>`]), created from a Rust memory buffer (e.g., [`VVec`]). 317 pub struct Owned<P> { 323 _pages: P, 326 // SAFETY: `Owned` can be sent to any task if `P` can be send to any task. 327 unsafe impl<P: Send> Send for Owned<P> {} 329 // SAFETY: `Owned` has no interior mutability and can be accessed concurrently if `P` can be 331 unsafe impl<P: Sync> Sync for Owned<P> {} 333 impl<P> Owne 338 new( dev: &Device<Bound>, mut pages: P, dir: dma::DataDirection, flags: alloc::Flags, ) -> Result<impl PinInit<Self, Error> + '_> new() argument 433 new( dev: &Device<Bound>, pages: P, dir: dma::DataDirection, flags: alloc::Flags, ) -> impl PinInit<Self, Error> + '_ new() argument [all...] |
| /linux/security/apparmor/include/ |
| H A D | label.h | 171 #define label_for_each(I, L, P) \ argument 172 for ((I).i = 0; ((P) = (L)->vec[(I).i]); ++((I).i)) 175 #define label_for_each_cont(I, L, P) \ argument 176 for (++((I).i); ((P) = (L)->vec[(I).i]); ++((I).i)) 181 #define label_for_each_confined(I, L, P) \ argument 183 ((P) = (L)->vec[(I).i]); \ 186 #define label_for_each_in_merge(I, A, B, P) \ argument 188 ((P) = aa_label_next_in_merge(&(I), (A), (B))); \ 191 #define label_for_each_not_in_set(I, SET, SUB, P) \ argument 193 ((P) 204 label_for_each_in_ns(I,NS,L,P) global() argument 209 fn_for_each_in_ns(L,P,FN) global() argument 221 fn_for_each_XXX(L,P,FN,...) global() argument 231 fn_for_each(L,P,FN) global() argument 232 fn_for_each_confined(L,P,FN) global() argument 234 fn_for_each2_XXX(L1,L2,P,FN,...) global() argument 244 fn_for_each_in_merge(L1,L2,P,FN) global() argument 246 fn_for_each_not_in_set(L1,L2,P,FN) global() argument [all...] |
| H A D | lib.h | 90 #define label_for_each_in_scope(I, NS, L, P) \ argument 91 label_for_each_in_ns(I, NS, L, P) 93 #define fn_for_each_in_scope(L, P, FN) \ argument 94 fn_for_each_in_ns(L, P, FN) 279 * @P: profile parameter derived from L by this macro, can be passed to FN 281 * @FN: fn to call for each profile transition. @P is set to the profile 289 #define fn_label_build(L, P, GFP, FN) \ argument 305 label_for_each(__i, (L), (P)) { \ 320 label_for_each(__i, __lvec[__j], (P)) \ 321 __pvec[__k++] = aa_get_profile(P); \ 344 __fn_build_in_scope(NS,P,NS_FN,OTHER_FN) global() argument 354 fn_label_build_in_scope(L,P,GFP,NS_FN,OTHER_FN) global() argument [all...] |
| /linux/Documentation/arch/arm/nwfpe/ |
| H A D | netwinder-fpe.rst | 14 {P|M|Z} = {round to +infinity,round to -infinity,round to zero}, 51 FLT{cond}<S,D,E>{P,M,Z} Fn, Rd Convert integer to floating point 52 FIX{cond}{P,M,Z} Rd, Fn Convert floating point to integer 80 ADF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - add 81 SUF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - subtract 82 RSF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - reverse subtract 83 MUF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - multiply 84 DVF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - divide 85 RDV{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - reverse divide 89 FML{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - fast multiply [all …]
|
| H A D | todo.rst | 6 POW{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - power 7 RPW{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - reverse power 8 POL{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - polar angle (arctan2) 10 LOG{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - logarithm to base 10 11 LGN{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - logarithm to base e 12 EXP{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - exponent 13 SIN{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - sine 14 COS{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - cosine 15 TAN{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - tangent 16 ASN{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - arcsine [all …]
|
| /linux/tools/perf/util/ |
| H A D | mem-events.c | 659 #define P(a, b) PERF_MEM_##a##_##b in c2c_decode_stats() macro 663 if (lock & P(LOCK, LOCKED)) stats->locks++; in c2c_decode_stats() 665 if (blk & P(BLK, DATA)) stats->blk_data++; in c2c_decode_stats() 666 if (blk & P(BLK, ADDR)) stats->blk_addr++; in c2c_decode_stats() 668 if (op & P(OP, LOAD)) { in c2c_decode_stats() 677 if (lvl & P(LVL, HIT)) { in c2c_decode_stats() 678 if (lvl & P(LVL, UNC)) stats->ld_uncache++; in c2c_decode_stats() 679 if (lvl & P(LVL, IO)) stats->ld_io++; in c2c_decode_stats() 680 if (lvl & P(LVL, LFB)) stats->ld_fbhit++; in c2c_decode_stats() 681 if (lvl & P(LVL, L1 )) stats->ld_l1hit++; in c2c_decode_stats() [all …]
|
| /linux/kernel/sched/ |
| H A D | debug.c | 813 #define P(F) SEQ_printf(m, " .%-30s: %lld\n", #F, (long long)F) 843 P(se->load.weight); in print_task() 844 P(se->avg.load_avg); in print_task() 845 P(se->avg.util_avg); in print_task() 846 P(se->avg.runnable_avg); in print_task() 851 #undef P in print_task() 1061 #define P(x) \ in print_cpu() 1071 P(rt_throttled); in print_cpu() 1078 #undef P in print_cpu() 1114 #define P( in sched_debug_header() 755 #define P( print_cfs_group_stats() macro 1003 #define P( print_rt_rq() macro 1056 #define P( print_cpu() macro 1082 #define P( print_cpu() macro 1122 #define P( sched_debug_header() macro 1139 #define P( sched_debug_header() macro 1232 #define P(F) __PS global() macro [all...] |
| /linux/Documentation/admin-guide/pm/ |
| H A D | intel_pstate.rst | 24 For the processors supported by ``intel_pstate``, the P-state concept is broader 27 information about that). For this reason, the representation of P-states used 32 ``intel_pstate`` maps its internal representation of P-states to frequencies too 38 Since the hardware P-state selection interface used by ``intel_pstate`` is 72 hardware-managed P-states (HWP) support. If it works in this mode, the 77 provides its own scaling algorithms for P-state selection. Those algorithms 80 ``sysfs``). [Note that different P-state selection algorithms may be chosen for 86 For example, the ``powersave`` P-state selection algorithm provided by 90 There are two P-state selection algorithms provided by ``intel_pstate`` in the 92 depends on whether or not the hardware-managed P-states (HWP) feature has been [all …]
|
| /linux/crypto/async_tx/ |
| H A D | async_pq.c | 16 * struct pq_scribble_page - space to hold throwaway P or Q buffer for 22 * and async_syndrome_val() contains the 'P' destination address at 27 #define P(b, d) (b[d-2]) 33 * do_async_gen_syndrome - asynchronously calculate P and/or Q 122 BUG_ON(i > disks - 3); /* P or Q can't be zero */ in do_sync_gen_syndrome() 158 * @blocks: source blocks from idx 0..disks-3, P @ disks-2 and Q @ disks-1 160 * @disks: number of blocks (including missing P or Q, see below) 167 * 'disks' note: callers can optionally omit either P or Q (but not 169 * blocks[disks-1] to NULL. When P or Q is omitted 'len' must be <= 183 &P(block in async_gen_syndrome() 26 #define P( global() macro [all...] |
| /linux/net/9p/ |
| H A D | Kconfig | 3 # 9P protocol configuration 23 tristate "9P FD Transport" 30 tristate "9P Virtio Transport" 38 tristate "9P Xen Transport" 44 tristate "9P USB Gadget Transport" 54 tristate "9P RDMA Transport (Experimental)" 61 Say Y if you want the 9P subsystem to log debug information.
|
| /linux/fs/jfs/ |
| H A D | jfs_btree.h | 54 #define BT_GETPAGE(IP, BN, MP, TYPE, SIZE, P, RC, ROOT)\ argument 59 P = (TYPE *)&JFS_IP(IP)->ROOT;\ 67 P = (MP)->data;\ 69 P = NULL;\ 142 #define BT_GETSEARCH(IP, LEAF, BN, MP, TYPE, P, INDEX, ROOT)\ argument 147 P = (TYPE *)MP->data;\ 149 P = (TYPE *)&JFS_IP(IP)->ROOT;\
|