| /openbmc/u-boot/include/fsl-mc/ |
| H A D | fsl_dpmac.h | 373 * @DPMAC_CNT_ING_FRAME_64: counts 64-octet frame, good or bad. 374 * @DPMAC_CNT_ING_FRAME_127: counts 65- to 127-octet frame, good or bad. 375 * @DPMAC_CNT_ING_FRAME_255: counts 128- to 255-octet frame, good or bad. 376 * @DPMAC_CNT_ING_FRAME_511: counts 256- to 511-octet frame, good or bad. 377 * @DPMAC_CNT_ING_FRAME_1023: counts 512- to 1023-octet frame, good or bad. 378 * @DPMAC_CNT_ING_FRAME_1518: counts 1024- to 1518-octet frame, good or bad. 379 * @DPMAC_CNT_ING_FRAME_1519_MAX: counts 1519-octet frame and larger 382 * @DPMAC_CNT_ING_FRAG: counts packet which is shorter than 64 octets received 384 * @DPMAC_CNT_ING_JABBER: counts packet longer than the maximum frame length 386 * @DPMAC_CNT_ING_FRAME_DISCARD: counts dropped packet due to internal errors. [all …]
|
| /openbmc/qemu/tests/bench/ |
| H A D | atomic_add-bench.c | 20 static struct count *counts; variable 68 qemu_mutex_lock(&counts[index].lock); in thread_func() 69 counts[index].val += 1; in thread_func() 70 qemu_mutex_unlock(&counts[index].lock); in thread_func() 72 qatomic_inc(&counts[index].val); in thread_func() 101 counts = qemu_memalign(64, sizeof(*counts) * range); in create_threads() 102 memset(counts, 0, sizeof(*counts) * range); in create_threads() 104 qemu_mutex_init(&counts[i].lock); in create_threads() 131 val += counts[i].val; in pr_stats()
|
| H A D | atomic64-bench.c | 25 static struct count *counts; variable 69 qatomic_read_i64(&counts[index].i64); in thread_func() 98 counts = g_malloc0_n(range, sizeof(*counts)); in create_threads()
|
| /openbmc/qemu/contrib/plugins/ |
| H A D | hwprofile.c | 34 IOCounts counts; member 112 GList *counts; in plugin_exit() local 125 counts = g_hash_table_get_values(devices); in plugin_exit() 126 if (counts && g_list_next(counts)) { in plugin_exit() 129 it = g_list_sort_with_data(counts, sort_cmp, NULL); in plugin_exit() 143 fmt_iocount_record(report, &loc->counts); in plugin_exit() 208 DeviceCounts *counts; in vcpu_haddr() local 211 counts = (DeviceCounts *) g_hash_table_lookup(devices, name); in vcpu_haddr() 213 if (!counts) { in vcpu_haddr() 215 counts = new_count(name, base); in vcpu_haddr() [all …]
|
| H A D | howvec.c | 180 GList *counts; in plugin_exit() local 208 counts = g_hash_table_get_values(insns); in plugin_exit() 209 if (counts && g_list_next(counts)) { in plugin_exit() 211 counts = g_list_sort_with_data(counts, cmp_exec_count, NULL); in plugin_exit() 213 for (i = 0; i < limit && g_list_next(counts); in plugin_exit() 214 i++, counts = g_list_next(counts)) { in plugin_exit() 215 InsnExecCount *rec = (InsnExecCount *) counts->data; in plugin_exit() 225 g_list_free(counts); in plugin_exit()
|
| H A D | hotpages.c | 80 GList *counts; in plugin_exit() local 82 counts = g_hash_table_get_values(pages); in plugin_exit() 83 if (counts && g_list_next(counts)) { in plugin_exit() 86 it = g_list_sort_with_data(counts, cmp_access_count, NULL); in plugin_exit()
|
| H A D | hotblocks.c | 76 GList *counts, *it; in plugin_exit() local 81 counts = g_hash_table_get_values(hotblocks); in plugin_exit() 82 it = g_list_sort_with_data(counts, cmp_exec_count, NULL); in plugin_exit()
|
| /openbmc/qemu/tests/tcg/plugins/ |
| H A D | bb.c | 24 static struct qemu_plugin_scoreboard *counts; variable 48 CPUCount *count = qemu_plugin_scoreboard_find(counts, i); in plugin_exit() 56 qemu_plugin_scoreboard_free(counts); in plugin_exit() 61 CPUCount *count = qemu_plugin_scoreboard_find(counts, cpu_index); in vcpu_idle() 73 CPUCount *count = qemu_plugin_scoreboard_find(counts, cpu_index); in vcpu_tb_exec() 121 counts = qemu_plugin_scoreboard_new(sizeof(CPUCount)); in qemu_plugin_install() 122 bb_count = qemu_plugin_scoreboard_u64_in_struct(counts, CPUCount, bb_count); in qemu_plugin_install() 124 counts, CPUCount, insn_count); in qemu_plugin_install()
|
| H A D | inline.c | 37 static struct qemu_plugin_scoreboard *counts; variable 173 qemu_plugin_scoreboard_free(counts); in plugin_exit() 280 counts = qemu_plugin_scoreboard_new(sizeof(CPUCount)); in qemu_plugin_install() 282 counts, CPUCount, count_tb); in qemu_plugin_install() 284 counts, CPUCount, count_insn); in qemu_plugin_install() 286 counts, CPUCount, count_mem); in qemu_plugin_install() 288 counts, CPUCount, count_tb_inline); in qemu_plugin_install() 290 counts, CPUCount, count_insn_inline); in qemu_plugin_install() 292 counts, CPUCount, count_mem_inline); in qemu_plugin_install() 294 counts, CPUCount, tb_cond_num_trigger); in qemu_plugin_install() [all …]
|
| H A D | mem.c | 60 static struct qemu_plugin_scoreboard *counts; variable 96 GList *counts = g_hash_table_get_values(regions); in plugin_exit() local 98 counts = g_list_sort_with_data(counts, addr_order, NULL); in plugin_exit() 102 if (counts && g_list_next(counts)) { in plugin_exit() 103 for (/* counts */; counts; counts = counts->next) { in plugin_exit() 104 RegionInfo *ri = (RegionInfo *) counts->data; in plugin_exit() 118 qemu_plugin_scoreboard_free(counts); in plugin_exit() 399 counts = qemu_plugin_scoreboard_new(sizeof(CPUCount)); in qemu_plugin_install() 401 counts, CPUCount, mem_count); in qemu_plugin_install() 402 io_count = qemu_plugin_scoreboard_u64_in_struct(counts, CPUCount, io_count); in qemu_plugin_install()
|
| H A D | insn.c | 34 struct qemu_plugin_scoreboard *counts; /* MatchCount */ member 112 MatchCount *match = qemu_plugin_scoreboard_find(insn_match->counts, in vcpu_insn_matched_exec_before() 223 qemu_plugin_u64 hit_e = qemu_plugin_scoreboard_u64_in_struct(m->counts, MatchCount, hits); in plugin_exit() 242 qemu_plugin_scoreboard_free(m->counts); in plugin_exit() 257 .counts = qemu_plugin_scoreboard_new(sizeof(MatchCount)) }; in parse_match()
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/iptraf/ |
| H A D | iptraf-ng_1.2.1.bb | 6 data like TCP connection packet and byte counts, interface statistics \ 8 packet and byte counts. IPTraf-ng features include an IP traffic monitor \ 9 which shows TCP flag information, packet and byte counts, ICMP \ 12 packet counts, IP checksum errors, interface activity and packet size \ 13 counts; a TCP and UDP service monitor showing counts of incoming and \
|
| /openbmc/u-boot/test/trace/ |
| H A D | test-trace.sh | 43 # Check trace counts. We expect to see an increase in the number of 48 counts="$(tr -d ',\r' <${tmp} | awk \ 52 if [ "${counts}" != "1 1 0 1 " ]; then 53 fail "trace collection error: ${counts}"
|
| /openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
| H A D | runcmd.py | 86 …self.assertEqual(numthreads, threading.active_count(), msg="Thread counts were not equal before (%… 96 …self.assertEqual(numthreads, threading.active_count(), msg="Thread counts were not equal before (%… 102 …self.assertEqual(numthreads, threading.active_count(), msg="Thread counts were not equal before (%… 112 …self.assertEqual(numthreads, threading.active_count(), msg="Thread counts were not equal before (%…
|
| /openbmc/qemu/tests/tcg/multiarch/system/ |
| H A D | validate-memory-counts.py | 3 # validate-memory-counts.py: check we instrumented memory properly 96 help='Assume bss was cleared (and adjusts counts).') 100 # Extract counts from memory binary
|
| /openbmc/qemu/tests/functional/acpi-bits/bits-tests/ |
| H A D | smilatency.py2 | 95 counts = [f() for i in range(count)] 96 return sum(counts)/len(counts)
|
| /openbmc/docs/designs/ |
| H A D | ecc-dbus-sel.md | 37 or ECC/other uncorrectable counts need to be obtained from the EDAC driver. 75 counts and uncorrectable ECC counts in the EDAC driver.
|
| /openbmc/qemu/tests/qemu-iotests/ |
| H A D | 305 | 49 # The reference counts of the clusters for the first 123k of this 65 # offsets 121k and 123k). Their reference counts are in the first and
|
| /openbmc/openbmc/meta-facebook/meta-yosemite4/recipes-phosphor/dbus/fan-fault-poweroff-policy/ |
| H A D | fan-rotor-fail-poweroff.yaml | 64 # call counts check when fan speed is 0 72 # check counts of both Fanboard Rotor Fail
|
| H A D | fan-rotor-missing-poweroff.yaml | 64 # call counts check when fan functional is false 72 # check counts of both Fanboard Rotor unfunctional
|
| /openbmc/u-boot/arch/arm/cpu/armv7/s5p-common/ |
| H A D | timer.c | 33 * This operates at 1MHz and counts downwards. It will wrap about every 96 /* Note that this timer counts downward. */ in timer_get_us()
|
| /openbmc/phosphor-fan-presence/control/json/actions/ |
| H A D | count_state_floor.hpp | 73 * Counts the number of members within a group are equal to a given state 118 * @brief Counts the number of members that are equal to the state.
|
| /openbmc/u-boot/arch/arm/mach-socfpga/include/mach/ |
| H A D | reset_manager_gen5.h | 17 u32 counts; member
|
| /openbmc/openbmc/meta-arm/ci/ |
| H A D | patchreview | 234 counts = recipes.countby(lambda r: r.upstream_status, results.values()) 235 bars = dicttoolz.valmap(lambda v: "#" * int(math.ceil(float(v) / len(results) * 100)), counts) 237 print("%-20s %s (%d)" % (k.capitalize() if k else "No status", bars[k], counts[k]))
|
| /openbmc/u-boot/arch/powerpc/lib/ |
| H A D | _lshrdi3.S | 20 * Updated to be valid for shift counts from 0 to 63 inclusive.
|