Home
last modified time | relevance | path

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

12345678910>>...12

/Linux-v4.19/tools/perf/util/
Dctype.c15 P = GIT_PRINT_EXTRA, /* printable - alpha - digit - glob - regex */ enumerator
25 PS,P, P, P, R, P, P, P, R, R, G, R, P, P, R, P, /* 32.. 47 */
26 D, D, D, D, D, D, D, D, D, D, P, P, P, P, P, G, /* 48.. 63 */
27 P, A, A, A, A, A, A, A, A, A, A, A, A, A, A, A, /* 64.. 79 */
28 A, A, A, A, A, A, A, A, A, A, A, G, G, P, R, P, /* 80.. 95 */
29 P, A, A, A, A, A, A, A, A, A, A, A, A, A, A, A, /* 96..111 */
30 A, A, A, A, A, A, A, A, A, A, A, R, R, P, P, 0, /* 112..127 */
Dmem-events.c333 #define P(a, b) PERF_MEM_##a##_##b in c2c_decode_stats() macro
337 if (lock & P(LOCK, LOCKED)) stats->locks++; in c2c_decode_stats()
339 if (op & P(OP, LOAD)) { in c2c_decode_stats()
348 if (lvl & P(LVL, HIT)) { in c2c_decode_stats()
349 if (lvl & P(LVL, UNC)) stats->ld_uncache++; in c2c_decode_stats()
350 if (lvl & P(LVL, IO)) stats->ld_io++; in c2c_decode_stats()
351 if (lvl & P(LVL, LFB)) stats->ld_fbhit++; in c2c_decode_stats()
352 if (lvl & P(LVL, L1 )) stats->ld_l1hit++; in c2c_decode_stats()
353 if (lvl & P(LVL, L2 )) stats->ld_l2hit++; in c2c_decode_stats()
354 if (lvl & P(LVL, L3 )) { in c2c_decode_stats()
[all …]
/Linux-v4.19/drivers/gpu/drm/nouveau/nvkm/subdev/clk/
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()
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 …]
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()
Dmcp77.c87 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 …]
Dpllnv04.c49 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-v4.19/kernel/sched/
Ddebug.c392 #define P(F) SEQ_printf(m, " .%-30s: %lld\n", #F, (long long)F) in print_cfs_group_stats() macro
417 P(se->load.weight); in print_cfs_group_stats()
418 P(se->runnable_weight); in print_cfs_group_stats()
420 P(se->avg.load_avg); in print_cfs_group_stats()
421 P(se->avg.util_avg); in print_cfs_group_stats()
422 P(se->avg.runnable_load_avg); in print_cfs_group_stats()
428 #undef P in print_cfs_group_stats()
584 #define P(x) \ in print_rt_rq() macro
595 P(rt_throttled); in print_rt_rq()
601 #undef P in print_rt_rq()
[all …]
/Linux-v4.19/Documentation/arm/nwfpe/
DREADME.FPE8 {P|M|Z} = {round to +infinity,round to -infinity,round to zero},
45 FLT{cond}<S,D,E>{P,M,Z} Fn, Rd Convert integer to floating point
46 FIX{cond}{P,M,Z} Rd, Fn Convert floating point to integer
74 ADF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - add
75 SUF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - subtract
76 RSF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - reverse subtract
77 MUF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - multiply
78 DVF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - divide
79 RDV{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - reverse divide
83 FML{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - fast multiply
[all …]
DTODO4 POW{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - power
5 RPW{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - reverse power
6 POL{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - polar angle (arctan2)
8 LOG{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - logarithm to base 10
9 LGN{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - logarithm to base e
10 EXP{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - exponent
11 SIN{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - sine
12 COS{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - cosine
13 TAN{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - tangent
14 ASN{cond}<S|D|E>{P,M,Z} Fd, <Fm,#value> - arcsine
[all …]
/Linux-v4.19/mm/
Dpercpu-stats.c20 #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()
123 P("empty_pop_pages", chunk->nr_empty_pop_pages); in chunk_map_stats()
124 P("first_bit", chunk->first_bit); in chunk_map_stats()
125 P("free_bytes", chunk->free_bytes); in chunk_map_stats()
126 P("contig_bytes", chunk->contig_bits * PCPU_MIN_ALLOC_SIZE); 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()
[all …]
/Linux-v4.19/arch/x86/events/intel/
Dds.c54 #define P(a, b) PERF_MEM_S(a, b) macro
55 #define OP_LH (P(OP, LOAD) | P(LVL, HIT))
56 #define LEVEL(x) P(LVLNUM, x)
57 #define REM P(REMOTE, REMOTE)
58 #define SNOOP_NONE_MISS (P(SNOOP, NONE) | P(SNOOP, MISS))
62 P(OP, LOAD) | P(LVL, MISS) | LEVEL(L3) | P(SNOOP, NA),/* 0x00:ukn L3 */
63 OP_LH | P(LVL, L1) | LEVEL(L1) | P(SNOOP, NONE), /* 0x01: L1 local */
64 OP_LH | P(LVL, LFB) | LEVEL(LFB) | P(SNOOP, NONE), /* 0x02: LFB hit */
65 OP_LH | P(LVL, L2) | LEVEL(L2) | P(SNOOP, NONE), /* 0x03: L2 hit */
66 OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, NONE), /* 0x04: L3 hit */
[all …]
/Linux-v4.19/security/apparmor/include/
Dlabel.h161 #define label_for_each(I, L, P) \ argument
162 for ((I).i = 0; ((P) = (L)->vec[(I).i]); ++((I).i))
165 #define label_for_each_cont(I, L, P) \ argument
166 for (++((I).i); ((P) = (L)->vec[(I).i]); ++((I).i))
195 #define label_for_each_confined(I, L, P) \ argument
197 ((P) = (L)->vec[(I).i]); \
200 #define label_for_each_in_merge(I, A, B, P) \ argument
202 ((P) = aa_label_next_in_merge(&(I), (A), (B))); \
205 #define label_for_each_not_in_set(I, SET, SUB, P) \ argument
207 ((P) = __aa_label_next_not_in_set(&(I), (SET), (SUB))); \
[all …]
Dlib.h217 #define fn_label_build(L, P, GFP, FN) \ argument
233 label_for_each(__i, (L), (P)) { \
244 label_for_each(__i, __lvec[__j], (P)) \
245 __pvec[__k++] = aa_get_profile(P); \
262 (P) = labels_profile(L); \
272 #define __fn_build_in_ns(NS, P, NS_FN, OTHER_FN) \ argument
275 if ((P)->ns != (NS)) \
282 #define fn_label_build_in_ns(L, P, GFP, NS_FN, OTHER_FN) \ argument
284 fn_label_build((L), (P), (GFP), \
285 __fn_build_in_ns(labels_ns(L), (P), (NS_FN), (OTHER_FN))); \
/Linux-v4.19/crypto/
Dblowfish_common.c309 #define ROUND(a, b, n) ({ b ^= P[n]; a ^= bf_F(b); })
317 const u32 *P = bctx->p; in encrypt_block() local
339 yl ^= P[16]; in encrypt_block()
340 yr ^= P[17]; in encrypt_block()
352 u32 *P = ctx->p; in blowfish_setkey() local
364 P[i] = bf_pbox[i]; in blowfish_setkey()
373 P[i] = P[i] ^ temp; in blowfish_setkey()
383 P[i] = data[0]; in blowfish_setkey()
384 P[i + 1] = data[1]; in blowfish_setkey()
Dblowfish_generic.c39 #define ROUND(a, b, n) ({ b ^= P[n]; a ^= bf_F(b); })
46 const u32 *P = ctx->p; in bf_encrypt() local
68 yl ^= P[16]; in bf_encrypt()
69 yr ^= P[17]; in bf_encrypt()
80 const u32 *P = ctx->p; in bf_decrypt() local
102 yl ^= P[1]; in bf_decrypt()
103 yr ^= P[0]; in bf_decrypt()
/Linux-v4.19/Documentation/admin-guide/pm/
Dintel_pstate.rst21 For the processors supported by ``intel_pstate``, the P-state concept is broader
24 information about that). For this reason, the representation of P-states used
30 ``intel_pstate`` maps its internal representation of P-states to frequencies too
36 Since the hardware P-state selection interface used by ``intel_pstate`` is
56 or without hardware-managed P-states support and in the passive mode. Which of
68 provides its own scaling algorithms for P-state selection. Those algorithms
71 ``sysfs``). [Note that different P-state selection algorithms may be chosen for
77 For example, the ``powersave`` P-state selection algorithm provided by
81 There are two P-state selection algorithms provided by ``intel_pstate`` in the
83 depends on whether or not the hardware-managed P-states (HWP) feature has been
[all …]
/Linux-v4.19/drivers/isdn/mISDN/
Ddsp_blowfish.c360 #define EROUND(a, b, n) do { b ^= P[n]; a ^= bf_F(b); } while (0)
361 #define DROUND(a, b, n) do { a ^= bf_F(b); b ^= P[n]; } while (0)
374 u32 *P = dsp->bf_p; in dsp_bf_encrypt() local
422 yl ^= P[16]; in dsp_bf_encrypt()
423 yr ^= P[17]; in dsp_bf_encrypt()
466 u32 *P = dsp->bf_p; in dsp_bf_decrypt() local
520 yr ^= P[17]; in dsp_bf_decrypt()
521 yl ^= P[16]; in dsp_bf_decrypt()
563 encrypt_block(const u32 *P, const u32 *S, u32 *dst, u32 *src) in encrypt_block() argument
585 yl ^= P[16]; in encrypt_block()
[all …]
/Linux-v4.19/kernel/time/
Dtimer_list.c145 #define P(x) \ in print_cpu() macro
154 P(hres_active); in print_cpu()
155 P(nr_events); in print_cpu()
156 P(nr_retries); in print_cpu()
157 P(nr_hangs); in print_cpu()
158 P(max_hang_time); in print_cpu()
160 #undef P in print_cpu()
164 # define P(x) \ in print_cpu() macro
172 P(nohz_mode); in print_cpu()
174 P(tick_stopped); in print_cpu()
[all …]
/Linux-v4.19/fs/jfs/
Djfs_btree.h67 #define BT_GETPAGE(IP, BN, MP, TYPE, SIZE, P, RC, ROOT)\ argument
72 P = (TYPE *)&JFS_IP(IP)->ROOT;\
80 P = (MP)->data;\
82 P = NULL;\
155 #define BT_GETSEARCH(IP, LEAF, BN, MP, TYPE, P, INDEX, ROOT)\ argument
160 P = (TYPE *)MP->data;\
162 P = (TYPE *)&JFS_IP(IP)->ROOT;\
/Linux-v4.19/drivers/gpu/drm/i915/
Dintel_overlay.c1489 #define P(x) i915_error_printf(m, " " #x ": 0x%08x\n", error->regs.x) in intel_overlay_print_error_state() macro
1490 P(OBUF_0Y); in intel_overlay_print_error_state()
1491 P(OBUF_1Y); in intel_overlay_print_error_state()
1492 P(OBUF_0U); in intel_overlay_print_error_state()
1493 P(OBUF_0V); in intel_overlay_print_error_state()
1494 P(OBUF_1U); in intel_overlay_print_error_state()
1495 P(OBUF_1V); in intel_overlay_print_error_state()
1496 P(OSTRIDE); in intel_overlay_print_error_state()
1497 P(YRGB_VPH); in intel_overlay_print_error_state()
1498 P(UV_VPH); in intel_overlay_print_error_state()
[all …]
/Linux-v4.19/net/9p/
DKconfig2 # 9P protocol configuration
20 tristate "9P Virtio Transport"
28 tristate "9P Xen Transport"
36 tristate "9P RDMA Transport (Experimental)"
43 Say Y if you want the 9P subsystem to log debug information.
/Linux-v4.19/Documentation/s390/
Dconfig3270.sh16 P=/proc/tty/driver/tty3270
30 if ! ls $P > /dev/null 2>&1; then
33 ls $P > /dev/null 2>&1 || exit 1
51 echo what=config > $P
70 done < $P
/Linux-v4.19/scripts/
Dparse-maintainers.pl12 my $P = $0;
20 die "$P: invalid argument - use --help if necessary\n";
30 usage: $P [options] <pattern matching regexes>
96 open(my $file, '>', "$filename") or die "$P: $filename: open failed - $!\n";
123 open(my $file, '<', "$filename") or die "$P: $filename: open failed - $!\n";
/Linux-v4.19/crypto/async_tx/
Dasync_pq.c42 #define P(b, d) (b[d-2]) macro
184 &P(blocks, disks), 2, in async_gen_syndrome()
189 BUG_ON(disks > MAX_DISKS || !(P(blocks, disks) || Q(blocks, disks))); in async_gen_syndrome()
227 if (P(blocks, disks)) in async_gen_syndrome()
228 unmap->addr[j++] = dma_map_page(device->dev, P(blocks, disks), in async_gen_syndrome()
257 if (!P(blocks, disks)) { in async_gen_syndrome()
258 P(blocks, disks) = pq_scribble_page; in async_gen_syndrome()
334 if (!P(blocks, disks)) { in async_syndrome_val()
338 pq[0] = dma_map_page(dev, P(blocks, disks), in async_syndrome_val()
373 struct page *p_src = P(blocks, disks); in async_syndrome_val()
[all …]
/Linux-v4.19/arch/sh/lib64/
Dcopy_user_memcpy.S62 #define LDUAQ(P,O,D0,D1) ldlo.q P,O,D0; ldhi.q P,O+7,D1 argument
63 #define STUAQ(P,O,D0,D1) stlo.q P,O,D0; sthi.q P,O+7,D1 argument
64 #define LDUAL(P,O,D0,D1) ldlo.l P,O,D0; ldhi.l P,O+3,D1 argument
65 #define STUAL(P,O,D0,D1) stlo.l P,O,D0; sthi.l P,O+3,D1 argument

12345678910>>...12