Home
last modified time | relevance | path

Searched full:total (Results 1 – 25 of 3531) sorted by relevance

12345678910>>...142

/linux-6.12.1/drivers/gpu/drm/v3d/
Dv3d_perfmon.c26 {"QPU", "QPU-total-idle-clk-cycles", "[QPU] Total idle clock cycles for all QPUs"},
27 …{"QPU", "QPU-total-active-clk-cycles-vertex-coord-shading", "[QPU] Total active clock cycles for a…
28 …{"QPU", "QPU-total-active-clk-cycles-fragment-shading", "[QPU] Total active clock cycles for all Q…
29 …{"QPU", "QPU-total-clk-cycles-executing-valid-instr", "[QPU] Total clock cycles for all QPUs execu…
30 …{"QPU", "QPU-total-clk-cycles-waiting-TMU", "[QPU] Total clock cycles for all QPUs stalled waiting…
31 …{"QPU", "QPU-total-clk-cycles-waiting-scoreboard", "[QPU] Total clock cycles for all QPUs stalled …
32 …{"QPU", "QPU-total-clk-cycles-waiting-varyings", "[QPU] Total clock cycles for all QPUs stalled wa…
33 {"QPU", "QPU-total-instr-cache-hit", "[QPU] Total instruction cache hits for all slices"},
34 {"QPU", "QPU-total-instr-cache-miss", "[QPU] Total instruction cache misses for all slices"},
35 {"QPU", "QPU-total-uniform-cache-hit", "[QPU] Total uniforms cache hits for all slices"},
[all …]
/linux-6.12.1/tools/perf/pmu-events/arch/s390/cf_z15/
Dcrypto6.json7 …"PublicDescription": "This counter counts the total number of the pseudorandom-number-generation f…
14 …"PublicDescription": "This counter counts the total number of CPU cycles when the DEA/AES/SHA copr…
21 …"PublicDescription": "This counter counts the total number of the pseudorandom-number-generation f…
28 …"PublicDescription": "This counter counts the total number of CPU cycles blocked for the pseudoran…
35 …"PublicDescription": "This counter counts the total number of the SHA functions issued by the CPU."
42 …"PublicDescription": "This counter counts the total number of CPU cycles when the SHA coprocessor …
49 …"PublicDescription": "This counter counts the total number of the SHA functions that are issued by…
56 …"PublicDescription": "This counter counts the total number of CPU cycles blocked for the SHA funct…
63 …"PublicDescription": "This counter counts the total number of the DEA functions issued by the CPU."
70 …"PublicDescription": "This counter counts the total number of CPU cycles when the DEA/AES coproces…
[all …]
Dbasic.json7 …"PublicDescription": "This counter counts the total number of CPU cycles, excluding the number of …
14 "PublicDescription": "This counter counts the total number of instructions executed by the CPU."
21 …"PublicDescription": "This counter counts the total number of level-1 instruction-cache or unified…
28 …"PublicDescription": "This counter counts the total number of cache penalty cycles for level-1 ins…
35 …"PublicDescription": "This counter counts the total number of level-1 data-cache directory writes."
42 …"PublicDescription": "This counter counts the total number of cache penalty cycles for level-1 dat…
49 …"PublicDescription": "This counter counts the total number of CPU cycles when the CPU is in the pr…
56 …"PublicDescription": "This counter counts the total number of instructions executed by the CPU whi…
/linux-6.12.1/tools/perf/pmu-events/arch/s390/cf_z16/
Dcrypto6.json7 …"PublicDescription": "This counter counts the total number of the pseudorandom-number-generation f…
14 …"PublicDescription": "This counter counts the total number of CPU cycles when the DEA/AES/SHA copr…
21 …"PublicDescription": "This counter counts the total number of the pseudorandom-number-generation f…
28 …"PublicDescription": "This counter counts the total number of CPU cycles blocked for the pseudoran…
35 …"PublicDescription": "This counter counts the total number of the SHA functions issued by the CPU."
42 …"PublicDescription": "This counter counts the total number of CPU cycles when the SHA coprocessor …
49 …"PublicDescription": "This counter counts the total number of the SHA functions that are issued by…
56 …"PublicDescription": "This counter counts the total number of CPU cycles blocked for the SHA funct…
63 …"PublicDescription": "This counter counts the total number of the DEA functions issued by the CPU."
70 …"PublicDescription": "This counter counts the total number of CPU cycles when the DEA/AES coproces…
[all …]
Dbasic.json7 …"PublicDescription": "This counter counts the total number of CPU cycles, excluding the number of …
14 "PublicDescription": "This counter counts the total number of instructions executed by the CPU."
21 …"PublicDescription": "This counter counts the total number of level-1 instruction-cache or unified…
28 …"PublicDescription": "This counter counts the total number of cache penalty cycles for level-1 ins…
35 …"PublicDescription": "This counter counts the total number of level-1 data-cache directory writes."
42 …"PublicDescription": "This counter counts the total number of cache penalty cycles for level-1 dat…
49 …"PublicDescription": "This counter counts the total number of CPU cycles when the CPU is in the pr…
56 …"PublicDescription": "This counter counts the total number of instructions executed by the CPU whi…
/linux-6.12.1/drivers/crypto/
Domap-crypto.c16 static int omap_crypto_copy_sg_lists(int total, int bs, in omap_crypto_copy_sg_lists() argument
33 while (*sg && total) { in omap_crypto_copy_sg_lists()
36 if (total < len) in omap_crypto_copy_sg_lists()
37 len = total; in omap_crypto_copy_sg_lists()
40 total -= len; in omap_crypto_copy_sg_lists()
42 if (total <= 0) in omap_crypto_copy_sg_lists()
55 static int omap_crypto_copy_sgs(int total, int bs, struct scatterlist **sg, in omap_crypto_copy_sgs() argument
62 new_len = ALIGN(total, bs); in omap_crypto_copy_sgs()
73 scatterwalk_map_and_copy(buf, *sg, 0, total, 0); in omap_crypto_copy_sgs()
75 memset(buf + total, 0, new_len - total); in omap_crypto_copy_sgs()
[all …]
/linux-6.12.1/tools/testing/selftests/bpf/map_tests/
Dlpm_trie_map_batch_ops.c71 __u32 step, count, total, total_success; in test_lpm_trie_map_batch_ops() local
99 total = 0; in test_lpm_trie_map_batch_ops()
106 total ? &batch : NULL, &batch, in test_lpm_trie_map_batch_ops()
107 keys + total, values + total, &count, &opts); in test_lpm_trie_map_batch_ops()
112 total += count; in test_lpm_trie_map_batch_ops()
117 CHECK(total != max_entries, "lookup with steps", in test_lpm_trie_map_batch_ops()
118 "total = %u, max_entries = %u\n", total, max_entries); in test_lpm_trie_map_batch_ops()
122 total = 0; in test_lpm_trie_map_batch_ops()
124 while (total < max_entries) { in test_lpm_trie_map_batch_ops()
125 if (max_entries - total < step) in test_lpm_trie_map_batch_ops()
[all …]
Dhtab_map_batch_ops.c79 __u32 batch, count, total, total_success; in __test_map_lookup_and_delete_batch() local
145 total = 0; in __test_map_lookup_and_delete_batch()
153 total ? &batch : NULL, in __test_map_lookup_and_delete_batch()
154 &batch, keys + total, in __test_map_lookup_and_delete_batch()
156 total * value_size, in __test_map_lookup_and_delete_batch()
171 total += count; in __test_map_lookup_and_delete_batch()
179 CHECK(total != max_entries, "lookup with steps", in __test_map_lookup_and_delete_batch()
180 "total = %u, max_entries = %u\n", total, max_entries); in __test_map_lookup_and_delete_batch()
183 total = 0; in __test_map_lookup_and_delete_batch()
185 while (total < max_entries) { in __test_map_lookup_and_delete_batch()
[all …]
/linux-6.12.1/tools/perf/pmu-events/arch/s390/cf_z13/
Dcrypto.json7 …"PublicDescription": "This counter counts the total number of the pseudorandom-number-generation f…
14 …"PublicDescription": "This counter counts the total number of CPU cycles when the DEA/AES/SHA copr…
21 …"PublicDescription": "This counter counts the total number of the pseudorandom-number-generation f…
28 …"PublicDescription": "This counter counts the total number of CPU cycles blocked for the pseudoran…
35 …"PublicDescription": "This counter counts the total number of the SHA functions issued by the CPU."
42 …"PublicDescription": "This counter counts the total number of CPU cycles when the SHA coprocessor …
49 …"PublicDescription": "This counter counts the total number of the SHA functions that are issued by…
56 …"PublicDescription": "This counter counts the total number of CPU cycles blocked for the SHA funct…
63 …"PublicDescription": "This counter counts the total number of the DEA functions issued by the CPU."
70 …"PublicDescription": "This counter counts the total number of CPU cycles when the DEA/AES coproces…
[all …]
Dbasic.json7 …"PublicDescription": "This counter counts the total number of CPU cycles, excluding the number of …
14 "PublicDescription": "This counter counts the total number of instructions executed by the CPU."
21 …"PublicDescription": "This counter counts the total number of level-1 instruction-cache or unified…
28 …"PublicDescription": "This counter counts the total number of cache penalty cycles for level-1 ins…
35 …"PublicDescription": "This counter counts the total number of level-1 data-cache directory writes."
42 …"PublicDescription": "This counter counts the total number of cache penalty cycles for level-1 dat…
49 …"PublicDescription": "This counter counts the total number of CPU cycles when the CPU is in the pr…
56 …"PublicDescription": "This counter counts the total number of instructions executed by the CPU whi…
63 …"PublicDescription": "This counter counts the total number of level-1 instruction-cache or unified…
70 …"PublicDescription": "This counter counts the total number of penalty cycles for level-1 instructi…
[all …]
/linux-6.12.1/tools/perf/pmu-events/arch/s390/cf_z10/
Dcrypto.json7 …"PublicDescription": "This counter counts the total number of the pseudorandom-number-generation f…
14 …"PublicDescription": "This counter counts the total number of CPU cycles when the DEA/AES/SHA copr…
21 …"PublicDescription": "This counter counts the total number of the pseudorandom-number-generation f…
28 …"PublicDescription": "This counter counts the total number of CPU cycles blocked for the pseudoran…
35 …"PublicDescription": "This counter counts the total number of the SHA functions issued by the CPU."
42 …"PublicDescription": "This counter counts the total number of CPU cycles when the SHA coprocessor …
49 …"PublicDescription": "This counter counts the total number of the SHA functions that are issued by…
56 …"PublicDescription": "This counter counts the total number of CPU cycles blocked for the SHA funct…
63 …"PublicDescription": "This counter counts the total number of the DEA functions issued by the CPU."
70 …"PublicDescription": "This counter counts the total number of CPU cycles when the DEA/AES coproces…
[all …]
Dbasic.json7 …"PublicDescription": "This counter counts the total number of CPU cycles, excluding the number of …
14 "PublicDescription": "This counter counts the total number of instructions executed by the CPU."
21 …"PublicDescription": "This counter counts the total number of level-1 instruction-cache or unified…
28 …"PublicDescription": "This counter counts the total number of cache penalty cycles for level-1 ins…
35 …"PublicDescription": "This counter counts the total number of level-1 data-cache directory writes."
42 …"PublicDescription": "This counter counts the total number of cache penalty cycles for level-1 dat…
49 …"PublicDescription": "This counter counts the total number of CPU cycles when the CPU is in the pr…
56 …"PublicDescription": "This counter counts the total number of instructions executed by the CPU whi…
63 …"PublicDescription": "This counter counts the total number of level-1 instruction-cache or unified…
70 …"PublicDescription": "This counter counts the total number of penalty cycles for level-1 instructi…
[all …]
/linux-6.12.1/tools/perf/pmu-events/arch/s390/cf_z14/
Dcrypto.json7 …"PublicDescription": "This counter counts the total number of the pseudorandom-number-generation f…
14 …"PublicDescription": "This counter counts the total number of CPU cycles when the DEA/AES/SHA copr…
21 …"PublicDescription": "This counter counts the total number of the pseudorandom-number-generation f…
28 …"PublicDescription": "This counter counts the total number of CPU cycles blocked for the pseudoran…
35 …"PublicDescription": "This counter counts the total number of the SHA functions issued by the CPU."
42 …"PublicDescription": "This counter counts the total number of CPU cycles when the SHA coprocessor …
49 …"PublicDescription": "This counter counts the total number of the SHA functions that are issued by…
56 …"PublicDescription": "This counter counts the total number of CPU cycles blocked for the SHA funct…
63 …"PublicDescription": "This counter counts the total number of the DEA functions issued by the CPU."
70 …"PublicDescription": "This counter counts the total number of CPU cycles when the DEA/AES coproces…
[all …]
Dbasic.json7 …"PublicDescription": "This counter counts the total number of CPU cycles, excluding the number of …
14 "PublicDescription": "This counter counts the total number of instructions executed by the CPU."
21 …"PublicDescription": "This counter counts the total number of level-1 instruction-cache or unified…
28 …"PublicDescription": "This counter counts the total number of cache penalty cycles for level-1 ins…
35 …"PublicDescription": "This counter counts the total number of level-1 data-cache directory writes."
42 …"PublicDescription": "This counter counts the total number of cache penalty cycles for level-1 dat…
49 …"PublicDescription": "This counter counts the total number of CPU cycles when the CPU is in the pr…
56 …"PublicDescription": "This counter counts the total number of instructions executed by the CPU whi…
/linux-6.12.1/tools/perf/pmu-events/arch/s390/cf_z196/
Dcrypto.json7 …"PublicDescription": "This counter counts the total number of the pseudorandom-number-generation f…
14 …"PublicDescription": "This counter counts the total number of CPU cycles when the DEA/AES/SHA copr…
21 …"PublicDescription": "This counter counts the total number of the pseudorandom-number-generation f…
28 …"PublicDescription": "This counter counts the total number of CPU cycles blocked for the pseudoran…
35 …"PublicDescription": "This counter counts the total number of the SHA functions issued by the CPU."
42 …"PublicDescription": "This counter counts the total number of CPU cycles when the SHA coprocessor …
49 …"PublicDescription": "This counter counts the total number of the SHA functions that are issued by…
56 …"PublicDescription": "This counter counts the total number of CPU cycles blocked for the SHA funct…
63 …"PublicDescription": "This counter counts the total number of the DEA functions issued by the CPU."
70 …"PublicDescription": "This counter counts the total number of CPU cycles when the DEA/AES coproces…
[all …]
Dbasic.json7 …"PublicDescription": "This counter counts the total number of CPU cycles, excluding the number of …
14 "PublicDescription": "This counter counts the total number of instructions executed by the CPU."
21 …"PublicDescription": "This counter counts the total number of level-1 instruction-cache or unified…
28 …"PublicDescription": "This counter counts the total number of cache penalty cycles for level-1 ins…
35 …"PublicDescription": "This counter counts the total number of level-1 data-cache directory writes."
42 …"PublicDescription": "This counter counts the total number of cache penalty cycles for level-1 dat…
49 …"PublicDescription": "This counter counts the total number of CPU cycles when the CPU is in the pr…
56 …"PublicDescription": "This counter counts the total number of instructions executed by the CPU whi…
63 …"PublicDescription": "This counter counts the total number of level-1 instruction-cache or unified…
70 …"PublicDescription": "This counter counts the total number of penalty cycles for level-1 instructi…
[all …]
/linux-6.12.1/tools/perf/pmu-events/arch/s390/cf_zec12/
Dcrypto.json7 …"PublicDescription": "This counter counts the total number of the pseudorandom-number-generation f…
14 …"PublicDescription": "This counter counts the total number of CPU cycles when the DEA/AES/SHA copr…
21 …"PublicDescription": "This counter counts the total number of the pseudorandom-number-generation f…
28 …"PublicDescription": "This counter counts the total number of CPU cycles blocked for the pseudoran…
35 …"PublicDescription": "This counter counts the total number of the SHA functions issued by the CPU."
42 …"PublicDescription": "This counter counts the total number of CPU cycles when the SHA coprocessor …
49 …"PublicDescription": "This counter counts the total number of the SHA functions that are issued by…
56 …"PublicDescription": "This counter counts the total number of CPU cycles blocked for the SHA funct…
63 …"PublicDescription": "This counter counts the total number of the DEA functions issued by the CPU."
70 …"PublicDescription": "This counter counts the total number of CPU cycles when the DEA/AES coproces…
[all …]
Dbasic.json7 …"PublicDescription": "This counter counts the total number of CPU cycles, excluding the number of …
14 "PublicDescription": "This counter counts the total number of instructions executed by the CPU."
21 …"PublicDescription": "This counter counts the total number of level-1 instruction-cache or unified…
28 …"PublicDescription": "This counter counts the total number of cache penalty cycles for level-1 ins…
35 …"PublicDescription": "This counter counts the total number of level-1 data-cache directory writes."
42 …"PublicDescription": "This counter counts the total number of cache penalty cycles for level-1 dat…
49 …"PublicDescription": "This counter counts the total number of CPU cycles when the CPU is in the pr…
56 …"PublicDescription": "This counter counts the total number of instructions executed by the CPU whi…
63 …"PublicDescription": "This counter counts the total number of level-1 instruction-cache or unified…
70 …"PublicDescription": "This counter counts the total number of penalty cycles for level-1 instructi…
[all …]
/linux-6.12.1/drivers/gpu/drm/xe/
Dxe_guc_id_mgr.c44 unsigned int weight = bitmap_weight(idm->bitmap, idm->total); in __fini_idm()
50 weight, idm->total); in __fini_idm()
57 idm->total = 0; in __fini_idm()
81 idm_assert(idm, !idm->total); in xe_guc_id_mgr_init()
94 idm->total = limit; in xe_guc_id_mgr_init()
101 idm->total, str_plural(idm->total)); in xe_guc_id_mgr_init()
106 unsigned int total, in find_last_zero_area() argument
109 unsigned int found = total; in find_last_zero_area()
112 for_each_clear_bitrange(rs, re, bitmap, total) { in find_last_zero_area()
129 if (!idm->total) in idm_reserve_chunk_locked()
[all …]
/linux-6.12.1/drivers/gpu/drm/xe/tests/
Dxe_guc_id_mgr_test.c48 KUNIT_EXPECT_EQ(test, idm->total, GUC_ID_MAX); in init_fini()
51 KUNIT_EXPECT_EQ(test, idm->total, 0); in init_fini()
63 for (n = 0; n < idm->total; n++) { in check_used()
69 KUNIT_EXPECT_EQ(test, idm->used, idm->total); in check_used()
85 for (n = 0; n < idm->total - 1; n++) { in check_quota()
87 KUNIT_EXPECT_EQ(test, idm_reserve_chunk_locked(idm, 1, idm->total), -EDQUOT); in check_quota()
88 KUNIT_EXPECT_EQ(test, idm_reserve_chunk_locked(idm, 1, idm->total - n), -EDQUOT); in check_quota()
89 KUNIT_EXPECT_EQ(test, idm_reserve_chunk_locked(idm, idm->total - n, 1), -EDQUOT); in check_quota()
93 KUNIT_EXPECT_EQ(test, idm->used, idm->total); in check_quota()
94 idm_release_chunk_locked(idm, 0, idm->total); in check_quota()
[all …]
/linux-6.12.1/Documentation/translations/zh_CN/accounting/
Ddelay-accounting.rst92 CPU count real total virtual total delay total delay average
94 IO count delay total delay average
96 SWAP count delay total delay average
98 RECLAIM count delay total delay average
100 THRASHING count delay total delay average
102 COMPACT count delay total delay average
104 WPCOPY count delay total delay average
/linux-6.12.1/net/netfilter/
Dnft_counter.c110 struct nft_counter_tot *total) in nft_counter_reset() argument
120 u64_stats_add(&this_cpu->packets, -total->packets); in nft_counter_reset()
121 u64_stats_add(&this_cpu->bytes, -total->bytes); in nft_counter_reset()
128 struct nft_counter_tot *total) in nft_counter_fetch() argument
135 memset(total, 0, sizeof(*total)); in nft_counter_fetch()
146 total->bytes += bytes; in nft_counter_fetch()
147 total->packets += packets; in nft_counter_fetch()
155 struct nft_counter_tot total; in nft_counter_do_dump() local
157 nft_counter_fetch(priv, &total); in nft_counter_do_dump()
159 if (nla_put_be64(skb, NFTA_COUNTER_BYTES, cpu_to_be64(total.bytes), in nft_counter_do_dump()
[all …]
/linux-6.12.1/drivers/net/ethernet/freescale/
Ducc_geth.h57 u32 tx64; /* Total number of frames (including bad
62 u32 tx127; /* Total number of frames (including bad
66 u32 tx255; /* Total number of frames (including bad
69 u32 rx64; /* Total number of frames received including
72 u32 rx127; /* Total number of frames (including bad
75 u32 rx255; /* Total number of frames (including bad
78 u32 txok; /* Total number of octets residing in frames
81 u16 txcf; /* Total number of PAUSE control frames
84 u32 tmca; /* Total number of frames that were transmitted
87 u32 tbca; /* Total number of frames transmitted
[all …]
/linux-6.12.1/tools/perf/pmu-events/arch/x86/amdzen1/
Dfloating-point.json5 "BriefDescription": "Total number multi-pipe uOps assigned to all pipes.",
6 … includes non-numeric operations it is not suitable for measuring MFLOPS. Total number multi-pipe …
12 "BriefDescription": "Total number multi-pipe uOps assigned to pipe 3.",
13 … includes non-numeric operations it is not suitable for measuring MFLOPS. Total number multi-pipe …
19 "BriefDescription": "Total number multi-pipe uOps assigned to pipe 2.",
20 … includes non-numeric operations it is not suitable for measuring MFLOPS. Total number multi-pipe …
26 "BriefDescription": "Total number multi-pipe uOps assigned to pipe 1.",
27 … includes non-numeric operations it is not suitable for measuring MFLOPS. Total number multi-pipe …
33 "BriefDescription": "Total number multi-pipe uOps assigned to pipe 0.",
34 … includes non-numeric operations it is not suitable for measuring MFLOPS. Total number multi-pipe …
[all …]
/linux-6.12.1/Documentation/ABI/testing/
Ddebugfs-pfo-nx-crypto14 A u32 providing a total count of errors since the driver was loaded. The
29 The total number of bytes encrypted using AES in any of the driver's
33 The total number of AES operations submitted to the hardware.
36 The total number of bytes hashed by the hardware using SHA-256.
39 The total number of SHA-256 operations submitted to the hardware.
42 The total number of bytes hashed by the hardware using SHA-512.
45 The total number of SHA-512 operations submitted to the hardware.

12345678910>>...142