Home
last modified time | relevance | path

Searched full:intervals (Results 1 – 25 of 434) sorted by relevance

12345678910>>...18

/openbmc/linux/fs/ntfs/
H A Dtime.h26 * and a long tv_nsec where tv_sec is the number of 1-second intervals since
28 * intervals since the value of tv_sec.
31 * measured as the number of 100-nano-second intervals since 1st January 1601,
37 * Convert the seconds to 100ns intervals, add the nano-seconds in utc2ntfs()
38 * converted to 100ns intervals, and then add the NTFS time offset. in utc2ntfs()
66 * and a long tv_nsec where tv_sec is the number of 1-second intervals since
68 * intervals since the value of tv_sec.
71 * measured as the number of 100 nano-second intervals since 1st January 1601,
81 * Convert the time to 1-second intervals and the remainder to in ntfs2utc()
82 * 1-nano-second intervals. in ntfs2utc()
/openbmc/linux/Documentation/userspace-api/media/v4l/
H A Dvidioc-enum-frameintervals.rst13 VIDIOC_ENUM_FRAMEINTERVALS - Enumerate frame intervals
35 This ioctl allows applications to enumerate all frame intervals that the
43 depend on the type of frame intervals the device supports. Here are the
70 intervals.
74 The order in which the frame intervals are returned has no
76 default frame intervals.
85 **Frame intervals and frame rates:** The V4L2 API uses frame
86 intervals instead of frame rates. Given the frame interval the frame
131 - IN: Pixel format for which the frame intervals are enumerated.
134 - IN: Frame width for which the frame intervals are enumerated.
[all …]
H A Dvidioc-subdev-enum-frame-interval.rst13 VIDIOC_SUBDEV_ENUM_FRAME_INTERVAL - Enumerate frame intervals
34 This ioctl lets applications enumerate available frame intervals on a
35 given sub-device pad. Frame intervals only makes sense for sub-devices
39 For the common use case of image sensors, the frame intervals available
42 when enumerating frame intervals.
44 To enumerate frame intervals applications initialize the ``index``,
50 intervals are enumerable by beginning at index zero and incrementing by
53 Available frame intervals may depend on the current 'try' formats at
92 - Frame intervals to be enumerated, from enum
/openbmc/linux/Documentation/userspace-api/media/drivers/
H A Dimx-uapi.rst42 intervals (elapsed time between two EOF's) drop below the nominal
47 line mechanism should show an increase in the intervals by 1 line
72 If the averaged intervals fall outside nominal by this amount, in
77 If any intervals are higher than this value, those samples are
85 FIM begins to average intervals.
90 for measuring frame intervals. This is superior to the default method
91 of measuring frame intervals via EOF interrupt, since it is not subject
106 When input capture is disabled, frame intervals will be measured via
/openbmc/openbmc-tools/dbus-vis/
H A Ddbus_timeline_vis.js166 let intervals = [];
176 let interval_idx = 0; // The overall index into the intervals array
212 …the_header.intervals_idxes.push(interval_idx); // Keep the indices into the intervals array for u…
213 intervals.push(line);
217 // Compute a set of "merged intervals" for each content_key
220 intervals[i].forEach((t0t1) => {
261 for (let i = 0; i < intervals.length; i++) {
262 for (let j = 0; j < intervals[i].length; j++) {
263 let x = intervals[i][j];
268 // merged intervals should be time-shifted as well
[all …]
H A Dboost_handler_timeline_vis.js134 let intervals = [];
156 intervals.push(line);
160 for (let i = 0; i < intervals.length; i++) {
161 for (let j = 0; j < intervals[i].length; j++) {
162 let x = intervals[i][j];
168 boost_asio_handler_timeline_view.Intervals = intervals.slice();
H A Dipmi_timeline_vis.js12 // timeline data into the Intervals and Titles arrays. The draw loop immediately
13 // picks up the updated Intervals and Titles arrays and draws on the canvas
153 let Intervals = []; variable
247 for (let i = 0; i < Intervals.length; i++) {
248 let interval = Intervals[i];
260 for (let i = 0; i < Intervals.length; i++) {
261 let interval = Intervals[i];
453 Intervals = [];
466 Intervals.push(line);
469 ipmi_timeline_view.Intervals = Intervals.slice();
/openbmc/linux/drivers/firmware/arm_scmi/
H A Dsensors.c150 __le32 intervals[]; member
287 * Max intervals is not declared previously anywhere so we in iter_intervals_update_state()
291 s->intervals.segmented = SEGMENTED_INTVL_FORMAT(flags); in iter_intervals_update_state()
292 s->intervals.count = st->num_returned + st->num_remaining; in iter_intervals_update_state()
293 /* segmented intervals are reported in one triplet */ in iter_intervals_update_state()
294 if (s->intervals.segmented && in iter_intervals_update_state()
298 s->id, s->intervals.count); in iter_intervals_update_state()
299 s->intervals.segmented = false; in iter_intervals_update_state()
300 s->intervals.count = 0; in iter_intervals_update_state()
304 if (s->intervals.count >= SCMI_MAX_PREALLOC_POOL) { in iter_intervals_update_state()
[all …]
/openbmc/linux/mm/damon/
H A Dsysfs.c412 * intervals directory
426 struct damon_sysfs_intervals *intervals = kmalloc(sizeof(*intervals), in damon_sysfs_intervals_alloc() local
429 if (!intervals) in damon_sysfs_intervals_alloc()
432 intervals->kobj = (struct kobject){}; in damon_sysfs_intervals_alloc()
433 intervals->sample_us = sample_us; in damon_sysfs_intervals_alloc()
434 intervals->aggr_us = aggr_us; in damon_sysfs_intervals_alloc()
435 intervals->update_us = update_us; in damon_sysfs_intervals_alloc()
436 return intervals; in damon_sysfs_intervals_alloc()
442 struct damon_sysfs_intervals *intervals = container_of(kobj, in sample_us_show() local
445 return sysfs_emit(buf, "%lu\n", intervals->sample_us); in sample_us_show()
[all …]
/openbmc/linux/drivers/cpuidle/governors/
H A Dmenu.c26 #define INTERVALS (1UL << INTERVAL_SHIFT) macro
77 * intervals and if the stand deviation of these 8 intervals is below a
78 * threshold value, we use the average of these intervals as prediction.
118 unsigned int intervals[INTERVALS]; member
167 * intervals, and checking if the standard deviation of that set
181 /* First calculate the average of past intervals */ in get_typical_interval()
186 for (i = 0; i < INTERVALS; i++) { in get_typical_interval()
187 unsigned int value = data->intervals[i]; in get_typical_interval()
202 if (divisor == INTERVALS) in get_typical_interval()
209 for (i = 0; i < INTERVALS; i++) { in get_typical_interval()
[all …]
/openbmc/qemu/tests/image-fuzzer/qcow2/
H A Dfuzz.py46 def random_from_intervals(intervals): argument
47 """Select a random integer number from the list of specified intervals.
50 limits are included. Intervals in a list should not overlap.
52 total = reduce(lambda x, y: x + y[1] - y[0] + 1, intervals, 0)
53 r = random.randint(0, total - 1) + intervals[0][0]
54 for x in zip(intervals, intervals[1:]):
97 def int_validator(current, intervals): argument
98 """Return a random value from intervals not equal to the current.
102 return validator(current, random_from_intervals, intervals)
/openbmc/linux/drivers/hid/
H A Dhid-holtekff.c44 * 2: periodic rumble, short intervals
46 * 4: periodic rumble, long intervals
47 * 5: weak periodic rumble, long intervals
48 * 6: weak periodic rumble, short intervals
49 * 7: periodic rumble, short intervals
50 * 8: strong periodic rumble, short intervals
53 * b: very strong periodic rumble, very short intervals
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/
H A Dpython3-intervals_1.10.0.bb2 HOMEPAGE = "https://github.com/AlexandreDecan/python-intervals"
8 PYPI_PACKAGE := "python-intervals"
/openbmc/linux/tools/perf/pmu-events/arch/x86/ivybridge/
H A Dother.json11 "BriefDescription": "Number of intervals between processor halts while thread is in ring 0",
16 … "PublicDescription": "Number of intervals between processor halts while thread is in ring 0.",
/openbmc/linux/tools/perf/pmu-events/arch/x86/ivytown/
H A Dother.json11 "BriefDescription": "Number of intervals between processor halts while thread is in ring 0",
16 … "PublicDescription": "Number of intervals between processor halts while thread is in ring 0.",
/openbmc/linux/kernel/irq/
H A Dtimings.c47 * interrupt and we end up with a suite of intervals. The experience
79 * The suffix array will build a suite of intervals of different
331 * The buffer contains the suite of intervals, in a ilog2 in irq_timings_next_event_index()
393 * number of intervals greater or equal to three times the in __irq_timings_next_event()
638 u64 *intervals; member
643 * Intervals are given in nanosecond base
730 index = irq_timings_interval_index(ti->intervals[i]); in irq_timings_test_next_index()
746 i = irq_timings_interval_index(ti->intervals[ti->count - 1]); in irq_timings_test_next_index()
763 pr_info("---> Injecting intervals number #%d (count=%zd)\n", in irq_timings_next_index_selftest()
796 index = irq_timings_interval_index(ti->intervals[i]); in irq_timings_test_irqs()
[all …]
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/netperf/
H A Dnetperf_git.bb35 PACKAGECONFIG[intervals] = "--enable-intervals,--disable-intervals,,"
/openbmc/qemu/include/block/
H A Daccounting.h69 * @boundaries array define histogram intervals as follows:
73 * So, for example above, histogram intervals are:
91 QSLIST_HEAD(, BlockAcctTimedStats) intervals;
/openbmc/linux/drivers/iio/common/scmi_sensors/
H A Dscmi_iio.c229 *length = sensor->sensor_info->intervals.count * 2; in scmi_iio_read_avail()
230 if (sensor->sensor_info->intervals.segmented) in scmi_iio_read_avail()
527 (sensor->sensor_info->intervals.count * 2), in scmi_iio_set_sampling_freq_avail()
532 if (sensor->sensor_info->intervals.segmented) { in scmi_iio_set_sampling_freq_avail()
533 low_interval = sensor->sensor_info->intervals in scmi_iio_set_sampling_freq_avail()
540 step_size = sensor->sensor_info->intervals in scmi_iio_set_sampling_freq_avail()
547 high_interval = sensor->sensor_info->intervals in scmi_iio_set_sampling_freq_avail()
555 for (i = 0; i < sensor->sensor_info->intervals.count; i++) { in scmi_iio_set_sampling_freq_avail()
556 cur_interval = sensor->sensor_info->intervals.desc[i]; in scmi_iio_set_sampling_freq_avail()
/openbmc/linux/block/
H A Dt10-pi.c186 unsigned intervals = nr_bytes >> rq->q->integrity.interval_exp; in t10_pi_type1_complete() local
202 for (j = 0; j < iv.bv_len && intervals; j += tuple_sz) { in t10_pi_type1_complete()
209 intervals--; in t10_pi_type1_complete()
414 unsigned intervals = nr_bytes >> rq->q->integrity.interval_exp; in ext_pi_type1_complete() local
430 for (j = 0; j < iv.bv_len && intervals; j += tuple_sz) { in ext_pi_type1_complete()
438 intervals--; in ext_pi_type1_complete()
/openbmc/qemu/block/
H A Daccounting.c71 QSLIST_FOREACH_SAFE(s, &stats->intervals, entries, next) { in block_acct_cleanup()
86 QSLIST_INSERT_HEAD(&stats->intervals, s, entries); in block_acct_add_interval()
99 return QSLIST_FIRST(&stats->intervals); in block_acct_interval_next()
235 QSLIST_FOREACH(s, &stats->intervals, entries) { in block_account_one_io()
/openbmc/linux/Documentation/ABI/stable/
H A Dsysfs-fs-orangefs23 Length of perf counter intervals in
40 other N-1 intervals remain available.
/openbmc/linux/Documentation/hwmon/
H A Dlm93.rst92 The monitoring intervals for the two #PROCHOT signals is also configurable.
93 These intervals can be found in the sysfs files prochot1_interval and
94 prochot2_interval. The values in these files specify the intervals for
97 intervals are (in seconds):
99 #PROCHOT intervals:
262 0 (disabled, h/w default) to 0.75 in 0.05 second intervals
/openbmc/linux/Documentation/devicetree/bindings/watchdog/
H A Dsnps,dw-wdt.yaml62 DW APB Watchdog custom timer intervals - Timeout Period ranges (TOPs).
66 the timer expiration intervals supported by the DW APB Watchdog. Note
/openbmc/linux/include/linux/
H A Ddamon.h336 * number of sample intervals that should be passed before applying
453 * of the sampling intervals and aggregation intervals, respectively.
490 * @ops_update_interval. All time intervals are in micro-seconds.
536 /* number of sample intervals that passed since this context started */
539 * number of sample intervals that should be passed before next
544 * number of sample intervals that should be passed before next ops

12345678910>>...18