/openbmc/linux/fs/ |
H A D | utimes.c | 27 if (times) { in vfs_utimes() 29 !nsec_valid(times[1].tv_nsec)) in vfs_utimes() 32 times[1].tv_nsec == UTIME_NOW) in vfs_utimes() 33 times = NULL; in vfs_utimes() 41 if (times) { in vfs_utimes() 45 newattrs.ia_atime = times[0]; in vfs_utimes() 52 newattrs.ia_mtime = times[1]; in vfs_utimes() 181 if (copy_from_user(×, utimes, sizeof(times))) in do_futimesat() 189 if (times[0].tv_usec >= 1000000 || times[0].tv_usec < 0 || in do_futimesat() 190 times[1].tv_usec >= 1000000 || times[1].tv_usec < 0) in do_futimesat() [all …]
|
/openbmc/linux/Documentation/scheduler/ |
H A D | sched-stats.rst | 43 1) # of times sched_yield() was called 49 3) # of times schedule() was called 50 4) # of times schedule() left the processor idle 54 5) # of times try_to_wake_up() was called 78 1) # of times in this domain load_balance() was called when the 80 2) # of times in this domain load_balance() checked but found 88 6) # of times in this domain pull_task() was called even though 90 7) # of times in this domain load_balance() was called but did 102 13) # of times in this domain pull_task() was called when busy 128 25) # of times active_load_balance() was called [all …]
|
/openbmc/linux/drivers/gpu/drm/i915/gt/ |
H A D | selftest_engine_heartbeat.c | 209 u32 times[5]; in __live_heartbeat_fast() local 223 for (i = 0; i < ARRAY_SIZE(times); i++) { in __live_heartbeat_fast() 252 times[i] = ktime_us_delta(t1, t0); in __live_heartbeat_fast() 255 sort(times, ARRAY_SIZE(times), sizeof(times[0]), cmp_u32, NULL); in __live_heartbeat_fast() 259 times[ARRAY_SIZE(times) / 2], in __live_heartbeat_fast() 260 times[0], in __live_heartbeat_fast() 261 times[ARRAY_SIZE(times) - 1]); in __live_heartbeat_fast() 270 if (times[ARRAY_SIZE(times) / 2] > error_threshold) { in __live_heartbeat_fast() 273 times[ARRAY_SIZE(times) / 2], in __live_heartbeat_fast()
|
/openbmc/phosphor-fan-presence/sensor-monitor/ |
H A D | alarm_timestamps.hpp | 190 std::vector<std::tuple<std::string, int, int, uint64_t>> times; in save() local 194 times.emplace_back(std::get<std::string>(key), in save() 203 oarchive(times); in save() 217 std::vector<std::tuple<std::string, int, int, uint64_t>> times; in load() local 232 iarchive(times); in load() 234 for (const auto& [path, shutdownType, alarmType, timestamp] : times) in load()
|
/openbmc/linux/Documentation/powerpc/ |
H A D | vcpudispatch_stats.rst | 17 By default, the DTLB log for each vcpu is processed 50 times a second so 31 2. number of times this vcpu was dispatched on the same processor as last 33 3. number of times this vcpu was dispatched on a different processor core 35 4. number of times this vcpu was dispatched on a different chip 36 5. number of times this vcpu was dispatches on a different socket/drawer 42 6. number of times this vcpu was dispatched in its home node (chip) 43 7. number of times this vcpu was dispatched in a different node 44 8. number of times this vcpu was dispatched in a node further away (numa
|
/openbmc/linux/fs/hostfs/ |
H A D | hostfs_user.c | 199 struct timeval times[2]; in set_attr() local 246 times[0].tv_sec = st.atime.tv_sec; in set_attr() 247 times[0].tv_usec = st.atime.tv_nsec / 1000; in set_attr() 248 times[1].tv_sec = st.mtime.tv_sec; in set_attr() 249 times[1].tv_usec = st.mtime.tv_nsec / 1000; in set_attr() 252 times[0].tv_sec = attrs->ia_atime.tv_sec; in set_attr() 253 times[0].tv_usec = attrs->ia_atime.tv_nsec / 1000; in set_attr() 256 times[1].tv_sec = attrs->ia_mtime.tv_sec; in set_attr() 257 times[1].tv_usec = attrs->ia_mtime.tv_nsec / 1000; in set_attr() 261 if (futimes(fd, times) != 0) in set_attr() [all …]
|
/openbmc/openbmc/poky/meta/lib/ |
H A D | buildstats.py | 139 times = [ int(token) for token in tokens[1:] ] 142 user = float((times[0] + times[1]) - (self.stat_ltimes[0] + self.stat_ltimes[1])) 143 …system = float((times[2] + times[5] + times[6]) - (self.stat_ltimes[2] + self.stat_ltimes[5] + sel… 144 idle = float(times[3] - self.stat_ltimes[3]) 145 iowait = float(times[4] - self.stat_ltimes[4]) 150 self.stat_ltimes = times
|
/openbmc/openbmc-test-automation/ipmi/ |
H A D | test_ipmi_resets.robot | 24 Repeat Keyword ${LOOP_COUNT} times IPMI MC Reset Warm (off) 31 Repeat Keyword ${LOOP_COUNT} times IPMI MC Reset Cold (run) 38 Repeat Keyword ${LOOP_COUNT} times IPMI Power Cycle 45 Repeat Keyword ${LOOP_COUNT} times IPMI Power Reset
|
H A D | test_ipmi_lanplus.robot | 20 [Documentation] Verify Lanplus interface With raw ipmi command for multiple times. 23 Repeat Keyword ${LOOP_COUNT} times Verify Lanplus Interface Commands
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/dhrystone/dhrystone-2.1/ |
H A D | dhrystone.patch | 5 * Redefinition of times() with wrong return type 9 value for times() 29 -extern int times (); 30 +/* extern int times (); */ 31 /* see library function "times" */
|
/openbmc/linux/lib/ |
H A D | fault-inject.c | 22 int times; in setup_fault_attr() local 27 &interval, &probability, &space, ×) < 4) { in setup_fault_attr() 35 atomic_set(&attr->times, times); in setup_fault_attr() 50 atomic_read(&attr->times)); in fail_dump() 131 if (atomic_read(&attr->times) == 0) in should_fail_ex() 155 if (atomic_read(&attr->times) != -1) in should_fail_ex() 156 atomic_dec_not_zero(&attr->times); in should_fail_ex() 223 debugfs_create_atomic_t("times", mode, dir, &attr->times); in fault_create_debugfs_attr() 355 FAULT_CONFIGFS_ATTR(times, atomic_t);
|
/openbmc/linux/tools/power/cpupower/bench/ |
H A D | README-BENCH | 34 You can specify load (100% CPU load) and sleep (0% CPU load) times in us which 42 repeated 20 times. 48 Will increase load and sleep time by 25ms 5 times. 50 25ms load/sleep time repeated 20 times (cycles). 51 50ms load/sleep time repeated 20 times (cycles). 53 100ms load/sleep time repeated 20 times (cycles). 79 In round 2, if the ondemand sampling times exactly match the load/sleep 96 You can easily test all kind of load/sleep times and check whether your
|
/openbmc/linux/arch/mips/include/asm/ |
H A D | unroll.h | 16 #define unroll(times, fn, ...) do { \ argument 28 BUILD_BUG_ON(!__builtin_constant_p(times)); \ 30 switch (times) { \
|
/openbmc/linux/drivers/iio/ |
H A D | industrialio-gts-helper.c | 354 int *times, i, j, idx = 0, *int_micro_times; in iio_gts_build_avail_time_table() local 359 times = kcalloc(gts->num_itime, sizeof(int), GFP_KERNEL); in iio_gts_build_avail_time_table() 360 if (!times) in iio_gts_build_avail_time_table() 367 if (idx == 0 || times[idx - 1] < new) { in iio_gts_build_avail_time_table() 368 times[idx++] = new; in iio_gts_build_avail_time_table() 373 if (times[j] == new) in iio_gts_build_avail_time_table() 375 if (times[j] > new) { in iio_gts_build_avail_time_table() 376 memmove(×[j + 1], ×[j], in iio_gts_build_avail_time_table() 378 times[j] = new; in iio_gts_build_avail_time_table() 394 iio_gts_us_to_int_micro(times, int_micro_times, idx); in iio_gts_build_avail_time_table() [all …]
|
/openbmc/linux/kernel/sched/ |
H A D | psi.c | 263 memcpy(times, groupc->times, sizeof(groupc->times)); in get_recent_times() 283 times[s] += now - state_start; in get_recent_times() 288 times[s] = delta; in get_recent_times() 355 u32 times[NR_PSI_STATES]; in collect_percpu_times() local 367 deltas[s] += (u64)times[s] * nonidle; in collect_percpu_times() 757 groupc->times[PSI_IO_SOME] += delta; in record_times() 759 groupc->times[PSI_IO_FULL] += delta; in record_times() 763 groupc->times[PSI_MEM_SOME] += delta; in record_times() 769 groupc->times[PSI_CPU_SOME] += delta; in record_times() 775 groupc->times[PSI_NONIDLE] += delta; in record_times() [all …]
|
/openbmc/linux/tools/testing/selftests/bpf/benchs/ |
H A D | bench_bpf_hashmap_lookup.c | 208 static int compute_events(u64 *times, double *events_mean, double *events_stddev, u64 *mean_time) in compute_events() argument 217 if (!times[i]) in compute_events() 219 *mean_time += times[i]; in compute_events() 220 *events_mean += events_from_time(times[i]); in compute_events() 231 double events_i = *events_mean - events_from_time(times[i]); in compute_events()
|
/openbmc/openbmc/poky/scripts/contrib/bb-perf/ |
H A D | buildstats.sh | 151 if [ -z "$times" ]; then 154 times="${times} ${time}" 165 echo "${task} ${recipe} ${times}"
|
/openbmc/qemu/hw/i2c/ |
H A D | omap_i2c.c | 54 uint8_t times[2]; member 154 s->times[0] = 0; in omap_i2c_reset() 155 s->times[1] = 0; in omap_i2c_reset() 245 return s->times[0]; in omap_i2c_read() 248 return s->times[1]; in omap_i2c_read() 383 s->times[0] = value; in omap_i2c_write() 387 s->times[1] = value; in omap_i2c_write()
|
/openbmc/linux/Documentation/ABI/testing/ |
H A D | sysfs-devices-platform-ipmi | 127 idles (RO) Number of times the interface was 140 hosed_count (RO) Number of times the hardware didn't 143 long_timeouts (RO) Number of times the driver 147 flag_fetches (RO) Number of times the driver 156 short_timeouts (RO) Number of times the driver 207 hosed (RO) Number of times the hardware didn't 228 flag_fetches (RO) Number of times a flag fetch was 234 receive_retries (RO) Number of times the receive of a 237 send_errors (RO) Number of times the send of a
|
/openbmc/linux/tools/perf/scripts/python/ |
H A D | stat-cpi.py | 6 times = [] variable 14 if (time not in times): 15 times.append(time)
|
/openbmc/linux/Documentation/admin-guide/cgroup-v1/ |
H A D | cpuacct.rst | 35 CPU time obtained by the cgroup into user and system times. Currently 44 system times. This has two side effects: 46 - It is theoretically possible to see wrong values for user and system times. 49 - It is possible to see slightly outdated values for user and system times
|
/openbmc/linux/Documentation/fault-injection/ |
H A D | nvme-fault-injection.rst | 22 echo 1 > /sys/kernel/debug/nvme0n1/fault_inject/times 33 name fault_inject, interval 1, probability 100, space 0, times 1 77 echo 1 > /sys/kernel/debug/nvme0n1/fault_inject/times 91 name fault_inject, interval 1, probability 100, space 0, times 1 129 echo 1 > /sys/kernel/debug/nvme0/fault_inject/times 141 name fault_inject, interval 1, probability 100, space 1, times 1
|
/openbmc/openbmc/poky/scripts/pybootchartgui/pybootchartgui/ |
H A D | parsing.py | 55 self.times = [] # Always empty, but expected by draw.py when drawing system charts. 93 self.times = [ idle ] 99 self.times.append(proc.start_time) 102 self.times.append(None) 434 times = [ int(token) for token in tokens[1:] ] 436 user = float((times[0] + times[1]) - (ltimes[0] + ltimes[1])) 437 system = float((times[2] + times[5] + times[6]) - (ltimes[2] + ltimes[5] + ltimes[6])) 438 idle = float(times[3] - ltimes[3]) 439 iowait = float(times[4] - ltimes[4]) 444 ltimes = times
|
H A D | draw.py | 255 def draw_annotations(ctx, proc_tree, times, rect): argument 260 for time in times: 397 draw_annotations (ctx, proc_tree, trace.times, chart_rect) 417 draw_annotations (ctx, proc_tree, trace.times, chart_rect) 605 draw_annotations(ctx, proc_tree, trace.times, chart_rect) 787 draw_annotations (ctx, proc_tree, times, chart_rect) 974 times = sorted(time_hash) 975 if len (times) < 2: 986 for time in times: 1013 last_time = times[0] [all …]
|
/openbmc/linux/Documentation/driver-api/media/drivers/ccs/ |
H A D | mk-ccs-regs | 304 my $times = $h->{$arg}->{elsize} != 1 ? 310 $reg_formula .= " + (($arg) < $lim ? ($arg)$times : $offset + (($arg) - $lim)$times)"; 312 $reg_formula .= " + ($arg)$times"; 315 $lim_formula .= (defined $lim_formula ? " + " : "") . "($arg)$times";
|