Home
last modified time | relevance | path

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

12345678910>>...154

/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema/
H A DPortMetrics.v1_7_0.json87 … "description": "The total number of correctable forward error correction (FEC) errors.",
88 …"longDescription": "This property shall contain the total number of times this port has received t…
97 "description": "The total number of invalid cyclic redundancy checks (CRCs).",
98 …"longDescription": "This property shall contain the total number of invalid cyclic redundancy chec…
107 "description": "The total number of invalid transmission words.",
108 …"longDescription": "This property shall contain the total number of times this port has received i…
117 "description": "The total number of link failures.",
118 …"longDescription": "This property shall contain the total number of link failures observed on this…
127 "description": "The total number of losses of signal.",
128 …"longDescription": "This property shall contain the total number of times this port has lost signa…
[all …]
H A DNetworkDeviceFunctionMetrics.v1_2_0.json57 "description": "The total number of offloaded TCP/IPv4 connections.",
58 …"longDescription": "This property shall contain the total number of offloaded TCP/IPv4 connections…
66 "description": "The total number of offloaded TCP/IPv6 connections.",
67 …"longDescription": "This property shall contain the total number of offloaded TCP/IPv6 connections…
97 "description": "The total number of port login (PLOGI) accept (ACC) responses.",
98 …"longDescription": "This property shall contain the total number of PLOGI ACC responses received b…
107 "description": "The total number of port login (PLOGI) reject (RJT) responses.",
108 …"longDescription": "This property shall contain the total number of PLOGI RJT responses received b…
117 "description": "The total number of port login (PLOGI) requests transmitted.",
118 …"longDescription": "This property shall contain the total number of PLOGI requests sent by this fu…
[all …]
H A DNetworkAdapterMetrics.v1_1_0.json97 …a percentage, typically `0` to `100`, which is calculated by dividing the total bytes received by …
108 …a percentage, typically `0` to `100`, which is calculated by dividing the total bytes transmitted …
122 "description": "The total number of NC-SI bytes received since reset.",
123 …"longDescription": "This property shall contain the total number of NC-SI bytes received since res…
132 "description": "The total number of NC-SI frames received since reset.",
133 …"longDescription": "This property shall contain the total number of NC-SI frames received since re…
141 "description": "The total number of NC-SI bytes sent since reset.",
142 …"longDescription": "This property shall contain the total number of NC-SI bytes sent since reset, …
151 "description": "The total number of NC-SI frames sent since reset.",
152 …"longDescription": "This property shall contain the total number of NC-SI frames sent since reset,…
[all …]
/openbmc/linux/tools/perf/pmu-events/arch/s390/cf_z16/
H A 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 …]
/openbmc/linux/tools/perf/pmu-events/arch/s390/cf_z15/
H A 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 …]
/openbmc/openbmc/poky/scripts/tiny/
H A Dksize.py37 self.total = int(sizes[3])
39 self.text = self.data = self.bss = self.total = 0
43 (indent+self.title, self.total, self.text, self.data, self.bss))
66 r.totals["total"] += b.sizes.total
71 r.deltas["total"] = r.sizes.total - r.totals["total"]
83 self.totals = {"total":0, "text":0, "data":0, "bss":0}
84 self.deltas = {"total":0, "text":0, "data":0, "bss":0}
89 (indent+self.title, "total", "text", "data", "bss"))
94 if p.sizes.total > 0:
98 (indent+"sum", self.totals["total"], self.totals["text"],
[all …]
/openbmc/linux/drivers/crypto/
H A 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 …]
/openbmc/linux/tools/testing/selftests/bpf/map_tests/
H A 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 …]
H A 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 …]
/openbmc/linux/tools/perf/pmu-events/arch/s390/cf_z196/
H A 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 …]
H A 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 …]
/openbmc/linux/tools/perf/pmu-events/arch/s390/cf_z10/
H A 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 …]
H A 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 …]
/openbmc/linux/tools/perf/pmu-events/arch/s390/cf_z14/
H A 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 …]
/openbmc/linux/tools/perf/pmu-events/arch/s390/cf_z13/
H A 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 …]
H A 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 …]
/openbmc/linux/tools/perf/pmu-events/arch/s390/cf_zec12/
H A 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 …]
H A 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 …]
/openbmc/bmcweb/redfish-core/schema/dmtf/csdl/
H A DNetworkDeviceFunctionMetrics_v1.xml103 …<Annotation Term="OData.Description" String="The total number of frames received on a network func…
104 …<Annotation Term="OData.LongDescription" String="This property shall contain the total number of f…
108 …<Annotation Term="OData.Description" String="The total number of bytes received on a network funct…
109 …<Annotation Term="OData.LongDescription" String="This property shall contain the total number of b…
114 …<Annotation Term="OData.Description" String="The total number of good unicast frames received on a…
115 …<Annotation Term="OData.LongDescription" String="This property shall contain the total number of g…
119 …<Annotation Term="OData.Description" String="The total number of good multicast frames received on…
120 …<Annotation Term="OData.LongDescription" String="This property shall contain the total number of g…
124 …<Annotation Term="OData.Description" String="The total number of frames sent on a network function…
125 …<Annotation Term="OData.LongDescription" String="This property shall contain the total number of f…
[all …]
H A DPortMetrics_v1.xml133 …<Annotation Term="OData.Description" String="The total number of PCRC transient errors detected."/>
134 …<Annotation Term="OData.LongDescription" String="This property shall contain the total number of P…
138 …<Annotation Term="OData.Description" String="The total number of ECRC transient errors detected."/>
139 …<Annotation Term="OData.LongDescription" String="This property shall contain total number of ECRC …
143 …<Annotation Term="OData.Description" String="The total number of packets received with a stomped E…
144 …<Annotation Term="OData.LongDescription" String="This property shall contain the total number of p…
148 …<Annotation Term="OData.Description" String="The total number of packets that this interface stomp…
149 …<Annotation Term="OData.LongDescription" String="This property shall contain the total number of p…
153 …<Annotation Term="OData.Description" String="The total number transient errors detected that are u…
154 …<Annotation Term="OData.LongDescription" String="This property shall contain the total number of t…
[all …]
/openbmc/qemu/docs/
H A Dthrottle.txt25 write operations. This gives us a total of six different parameters.
34 | throttling.iops-total | iops |
37 | throttling.bps-total | bps |
44 write limits or not, but note that if iops-total is set then neither
45 iops-read nor iops-write can be set. The same applies to bps-total and
53 -drive file=hd0.qcow2,throttling.iops-total=100
83 this section we'll use 'iops-total' as an example.
85 The I/O limit during bursts is set using 'iops-total-max', and the
86 maximum length (in seconds) is set with 'iops-total-max-length'. So if
92 throttling.iops-total=100,
[all …]
/openbmc/qemu/include/qemu/
H A Dthrottle-options.h13 #define QEMU_OPT_IOPS_TOTAL "iops-total"
14 #define QEMU_OPT_IOPS_TOTAL_MAX "iops-total-max"
15 #define QEMU_OPT_IOPS_TOTAL_MAX_LENGTH "iops-total-max-length"
22 #define QEMU_OPT_BPS_TOTAL "bps-total"
23 #define QEMU_OPT_BPS_TOTAL_MAX "bps-total-max"
24 #define QEMU_OPT_BPS_TOTAL_MAX_LENGTH "bps-total-max-length"
39 .help = "limit total I/O operations per second",\
51 .help = "limit total bytes per second",\
75 .help = "total bytes burst",\
79 .help = "total bytes read burst",\
[all …]
/openbmc/qemu/tests/qemu-iotests/
H A D219.out6 {"return": [{"current-progress": "FILTERED", "id": "job0", "status": "running", "total-progress": "…
14 {"return": [{"current-progress": 65536, "id": "job0", "status": "paused", "total-progress": 4194304…
17 {"return": [{"current-progress": 131072, "id": "job0", "status": "running", "total-progress": 41943…
21 {"return": [{"current-progress": 131072, "id": "job0", "status": "paused", "total-progress": 419430…
24 {"return": [{"current-progress": 196608, "id": "job0", "status": "running", "total-progress": 41943…
28 {"return": [{"current-progress": 196608, "id": "job0", "status": "paused", "total-progress": 419430…
31 {"return": [{"current-progress": 262144, "id": "job0", "status": "running", "total-progress": 41943…
35 {"return": [{"current-progress": 262144, "id": "job0", "status": "paused", "total-progress": 419430…
38 {"return": [{"current-progress": 327680, "id": "job0", "status": "running", "total-progress": 41943…
49 {"return": [{"current-progress": 4194304, "id": "job0", "status": "ready", "total-progress": 419430…
[all …]
/openbmc/linux/Documentation/translations/zh_CN/accounting/
H A 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
/openbmc/linux/net/netfilter/
H A Dnft_counter.c107 struct nft_counter *total) in nft_counter_reset() argument
117 this_cpu->packets -= total->packets; in nft_counter_reset()
118 this_cpu->bytes -= total->bytes; in nft_counter_reset()
124 struct nft_counter *total) in nft_counter_fetch() argument
132 memset(total, 0, sizeof(*total)); in nft_counter_fetch()
142 total->bytes += bytes; in nft_counter_fetch()
143 total->packets += packets; in nft_counter_fetch()
151 struct nft_counter total; in nft_counter_do_dump() local
153 nft_counter_fetch(priv, &total); in nft_counter_do_dump()
155 if (nla_put_be64(skb, NFTA_COUNTER_BYTES, cpu_to_be64(total.bytes), in nft_counter_do_dump()
[all …]

12345678910>>...154