Home
last modified time | relevance | path

Searched refs:P (Results 1 – 25 of 492) sorted by relevance

12345678910>>...20

/linux-6.15/tools/testing/selftests/net/netfilter/packetdrill/
H A Dconntrack_ack_loss_stall.pkt19 +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
37 +0.0001 < P. 13141:14601(1460) ack 1 win 257
[all …]
/linux-6.15/drivers/pinctrl/sunplus/
H A Dsppctl_sp7021.c65 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),
76 P(9, 0), P(9, 1), P(9, 2), P(9, 3), P(9, 4), P(9, 5), P(9, 6), P(9, 7),
[all …]
/linux-6.15/scripts/coccinelle/api/
H A Dstring_choices.cocci23 position P;
46 position P;
65 position P;
84 position P;
103 position P;
122 position P;
141 position P;
160 position P;
179 position P;
198 position P;
[all …]
/linux-6.15/drivers/gpu/drm/nouveau/nvkm/subdev/clk/
H A Dnv50.c58 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()
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
252 return read_pll(clk, 0x004008) >> P; in nv50_clk_read()
256 P = (read_div(clk) & 0x00000700) >> 8; in nv50_clk_read()
273 return read_pll(clk, 0x004028) >> P; in nv50_clk_read()
274 return read_pll(clk, 0x004030) >> P; in nv50_clk_read()
[all …]
H A Dpllgt215.c31 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 Dmcp77.c87 u32 P = 0; in mcp77_clk_read() local
107 P = (nvkm_rd32(device, 0x004028) & 0x00070000) >> 16; 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()
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()
144 P = (read_div(clk) & 0x00000700) >> 8; in mcp77_clk_read()
148 return nvkm_clk_read(&clk->base, nv_clk_src_core) >> P; in mcp77_clk_read()
150 return 500000 >> P; in mcp77_clk_read()
[all …]
/linux-6.15/tools/testing/selftests/net/packetdrill/
H A Dtcp_eor_no-coalesce-retrans.pkt38 +0 > P. 1:10001(10000) ack 1
41 +0 > P. 10001:10801(800) ack 1
43 +0 > P. 10801:11201(400) ack 1
44 +0 > P. 11201:11601(400) ack 1
45 +0 > P. 11601:12001(400) ack 1
46 +0 > P. 12001:12401(400) ack 1
47 +0 > P. 12401:12801(400) ack 1
48 +0 > P. 12801:13201(400) ack 1
49 +0 > P. 13201:13601(400) ack 1
50 +0 > P. 13601:14001(400) ack 1
[all …]
H A Dtcp_slow_start_slow-start-ack-per-1pkt.pkt23 +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 Dtcp_eor_no-coalesce-subsequent.pkt38 +0 > P. 1:10001(10000) ack 1
41 +0 > P. 10001:10801(800) ack 1
43 +0 > P. 10801:11201(400) ack 1
44 +0 > P. 11201:11601(400) ack 1
45 +0 > P. 11601:12001(400) ack 1
46 +0 > P. 12001:12401(400) ack 1
47 +0 > P. 12401:12801(400) ack 1
48 +0 > P. 12801:13201(400) ack 1
49 +0 > P. 13201:13601(400) ack 1
50 +0 > P. 13601:14001(400) ack 1
[all …]
H A Dtcp_slow_start_slow-start-fq-ack-per-2pkt.pkt27 +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 Dtcp_slow_start_slow-start-ack-per-2pkt.pkt24 +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
/linux-6.15/arch/x86/events/intel/
H A Dds.c83 #define OP_LH (P(OP, LOAD) | P(LVL, HIT))
90 P(OP, LOAD) | P(LVL, MISS) | LEVEL(L3) | P(SNOOP, NA),/* 0x00:ukn L3 */
198 P(OP, LOAD) | P(LVL, MISS) | LEVEL(L3) | P(SNOOP, NA), /* 0x00: ukn L3 */
213P(OP, LOAD) | P(LVL, MISS) | P(LVL, L3) | LEVEL(L3) | P(SNOOP, HITM), /* 0x0f: L3 Miss Snoop HitM…
233 u64 val = P(OP, STORE) | P(SNOOP, NA) | P(LVL, L1) | P(TLB, L2); in precise_store_data()
304 *val |= P(TLB, MISS) | P(TLB, L2); in pebs_set_tlb_lock()
306 *val |= P(TLB, HIT) | P(TLB, L1) | P(TLB, L2); in pebs_set_tlb_lock()
368 val = P(OP, LOAD) | LEVEL(NA) | P(SNOOP, NA); in lnc_latency_data()
371 val |= P(TLB, MISS) | P(TLB, L2); in lnc_latency_data()
373 val |= P(TLB, HIT) | P(TLB, L1) | P(TLB, L2); in lnc_latency_data()
[all …]
/linux-6.15/arch/powerpc/perf/
H A Disa207-common.c233 ret = P(SNOOP, HIT); in isa207_find_source()
252 ret |= P(SNOOP, HIT); in isa207_find_source()
269 ret = PH(LVL, L2) | LEVEL(L2) | REM | P(SNOOP, HIT) | P(HOPS, 0); in isa207_find_source()
271 ret = PH(LVL, L2) | LEVEL(L2) | REM | P(SNOOP, HITM) | P(HOPS, 0); in isa207_find_source()
273 ret = PH(LVL, L3) | LEVEL(L3) | REM | P(SNOOP, HIT) | P(HOPS, 0); in isa207_find_source()
275 ret = PH(LVL, L3) | LEVEL(L3) | REM | P(SNOOP, HITM) | P(HOPS, 0); in isa207_find_source()
282 P(SNOOP, HIT) | P(HOPS, 2); in isa207_find_source()
285 P(SNOOP, HITM) | P(HOPS, 2); in isa207_find_source()
288 P(SNOOP, HIT) | P(HOPS, 3); in isa207_find_source()
291 P(SNOOP, HITM) | P(HOPS, 3); in isa207_find_source()
[all …]
/linux-6.15/mm/
H A Dpercpu-stats.c19 #define P(X, Y) \ macro
121 P("nr_alloc", chunk->nr_alloc); in chunk_map_stats()
122 P("max_alloc_size", chunk->max_alloc_size); in chunk_map_stats()
124 P("first_bit", chunk_md->first_free); in chunk_map_stats()
125 P("free_bytes", chunk->free_bytes); in chunk_map_stats()
127 P("sum_frag", sum_frag); in chunk_map_stats()
128 P("max_frag", max_frag); in chunk_map_stats()
129 P("cur_min_alloc", cur_min_alloc); in chunk_map_stats()
130 P("cur_med_alloc", cur_med_alloc); in chunk_map_stats()
131 P("cur_max_alloc", cur_max_alloc); in chunk_map_stats()
[all …]
/linux-6.15/security/apparmor/include/
H A Dlabel.h156 #define label_for_each(I, L, P) \ argument
160 #define label_for_each_cont(I, L, P) \ argument
166 #define label_for_each_confined(I, L, P) \ argument
168 ((P) = (L)->vec[(I).i]); \
189 #define label_for_each_in_ns(I, NS, L, P) \ argument
191 ((P) = (L)->vec[(I).i]); \
194 #define fn_for_each_in_ns(L, P, FN) \ argument
206 #define fn_for_each_XXX(L, P, FN, ...) \ argument
216 #define fn_for_each(L, P, FN) fn_for_each_XXX(L, P, FN) argument
217 #define fn_for_each_confined(L, P, FN) fn_for_each_XXX(L, P, FN, _confined) argument
[all …]
H A Dlib.h234 #define fn_label_build(L, P, GFP, FN) \ argument
250 label_for_each(__i, (L), (P)) { \
261 label_for_each(__i, __lvec[__j], (P)) \
262 __pvec[__k++] = aa_get_profile(P); \
279 (P) = labels_profile(L); \
289 #define __fn_build_in_ns(NS, P, NS_FN, OTHER_FN) \ argument
292 if ((P)->ns != (NS)) \
299 #define fn_label_build_in_ns(L, P, GFP, NS_FN, OTHER_FN) \ argument
301 fn_label_build((L), (P), (GFP), \
302 __fn_build_in_ns(labels_ns(L), (P), (NS_FN), (OTHER_FN))); \
/linux-6.15/Documentation/arch/arm/nwfpe/
H A Dnetwinder-fpe.rst80 ADF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - add
84 DVF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - divide
107 MVF{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - move
114 RND{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - round
119 NRM{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - normalize
127 POW{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - power
133 EXP{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - exponent
134 SIN{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - sine
135 COS{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - cosine
136 TAN{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - tangent
[all …]
/linux-6.15/Documentation/admin-guide/pm/
H A Dintel_pstate.rst107 internal P-state selection logic. What those hints are depends on which P-state
232 Turbo P-states Support
240 The P-states above the turbo threshold are referred to as "turbo P-states" and
281 non-turbo P-state) and the minimum supported P-state are specific to the
308 * The minimum supported P-state.
314 * The maximum supported `one-core turbo P-state <turbo_>`_ (if turbo P-states
348 P-state <turbo_>`_).
357 P-state <turbo_>`_).
366 `Turbo P-states Support`_).
508 Coordination of P-State Limits
[all …]
/linux-6.15/crypto/
H A Dblowfish_common.c305 #define ROUND(a, b, n) ({ b ^= P[n]; a ^= bf_F(b); })
313 const u32 *P = bctx->p; in encrypt_block() local
335 yl ^= P[16]; in encrypt_block()
336 yr ^= P[17]; in encrypt_block()
348 u32 *P = ctx->p; in blowfish_setkey() local
360 P[i] = bf_pbox[i]; in blowfish_setkey()
369 P[i] = P[i] ^ temp; in blowfish_setkey()
379 P[i] = data[0]; in blowfish_setkey()
380 P[i + 1] = data[1]; in blowfish_setkey()
/linux-6.15/tools/perf/util/
H A Dmem-events.c668 if (op & P(OP, LOAD)) { in c2c_decode_stats()
677 if (lvl & P(LVL, HIT)) { in c2c_decode_stats()
682 if (lvl & P(LVL, L2)) { in c2c_decode_stats()
688 if (lvl & P(LVL, L3 )) { in c2c_decode_stats()
700 if (snoop & P(SNOOP, HIT)) in c2c_decode_stats()
710 if (snoop & P(SNOOP, HIT)) in c2c_decode_stats()
730 if ((lvl & P(LVL, MISS))) in c2c_decode_stats()
742 if (lvl & P(LVL, HIT)) { in c2c_decode_stats()
746 if (lvl & P(LVL, MISS)) in c2c_decode_stats()
748 if (lvl & P(LVL, NA)) in c2c_decode_stats()
[all …]
/linux-6.15/drivers/isdn/mISDN/
H A Ddsp_blowfish.c369 u32 *P = dsp->bf_p; in dsp_bf_encrypt() local
417 yl ^= P[16]; in dsp_bf_encrypt()
418 yr ^= P[17]; in dsp_bf_encrypt()
461 u32 *P = dsp->bf_p; in dsp_bf_decrypt() local
515 yr ^= P[17]; in dsp_bf_decrypt()
516 yl ^= P[16]; in dsp_bf_decrypt()
580 yl ^= P[16]; in encrypt_block()
581 yr ^= P[17]; in encrypt_block()
624 P[i] = bf_pbox[i]; in dsp_bf_init()
633 P[i] = P[i] ^ temp; in dsp_bf_init()
[all …]
/linux-6.15/kernel/sched/
H A Ddebug.c698 #undef P in print_cfs_group_stats()
897 #define P(x) \ in print_rt_rq() macro
914 #undef P in print_rt_rq()
972 #undef P in print_cpu()
990 #undef P in print_cpu()
1022 #define P(x) \ in sched_debug_header() macro
1029 P(jiffies); in sched_debug_header()
1034 #undef P in sched_debug_header()
1046 #undef P in sched_debug_header()
1262 P(policy); in proc_sched_show_task()
[all …]
/linux-6.15/kernel/time/
H A Dtimer_list.c125 #define P(x) \ in print_cpu() macro
134 P(hres_active); in print_cpu()
135 P(nr_events); in print_cpu()
136 P(nr_retries); in print_cpu()
137 P(nr_hangs); in print_cpu()
140 #undef P in print_cpu()
144 # define P(x) \ in print_cpu() macro
160 P(idle_calls); in print_cpu()
161 P(idle_sleeps); in print_cpu()
168 P(next_timer); in print_cpu()
[all …]
/linux-6.15/net/9p/
H A DKconfig3 # 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-6.15/drivers/gpu/drm/i915/display/
H A Dintel_overlay.c1516 P(OBUF_0Y); in intel_overlay_snapshot_print()
1517 P(OBUF_1Y); in intel_overlay_snapshot_print()
1524 P(UV_VPH); in intel_overlay_snapshot_print()
1528 P(DWINSZ); in intel_overlay_snapshot_print()
1529 P(SWIDTH); in intel_overlay_snapshot_print()
1534 P(OCLRC0); in intel_overlay_snapshot_print()
1535 P(OCLRC1); in intel_overlay_snapshot_print()
1536 P(DCLRKV); in intel_overlay_snapshot_print()
1537 P(DCLRKM); in intel_overlay_snapshot_print()
1542 P(OCMD); in intel_overlay_snapshot_print()
[all …]

12345678910>>...20