Home
last modified time | relevance | path

Searched refs:min_seconds (Results 1 – 8 of 8) sorted by relevance

/external/blktrace/iowatcher/
Dmain.c286 tf->tput_reads_gld = alloc_line_data(tf->min_seconds, tf->max_seconds, tf->stop_seconds); in setup_trace_file_graphs()
287 tf->tput_writes_gld = alloc_line_data(tf->min_seconds, tf->max_seconds, tf->stop_seconds); in setup_trace_file_graphs()
288 tf->latency_gld = alloc_line_data(tf->min_seconds, tf->max_seconds, tf->stop_seconds); in setup_trace_file_graphs()
289 tf->queue_depth_gld = alloc_line_data(tf->min_seconds, tf->max_seconds, tf->stop_seconds); in setup_trace_file_graphs()
291 tf->iop_gld = alloc_line_data(tf->min_seconds, tf->max_seconds, tf->stop_seconds); in setup_trace_file_graphs()
311 tf->fio_gld = alloc_line_data(tf->min_seconds, in setup_trace_file_graphs()
550 static void set_all_minmax_tf(unsigned int min_seconds, in set_all_minmax_tf() argument
558 tf->min_seconds = min_seconds; in set_all_minmax_tf()
563 tf->mpstat_min_seconds = min_seconds; in set_all_minmax_tf()
735 static void plot_io(struct plot *plot, unsigned int min_seconds, in plot_io() argument
[all …]
Dplot.h72 unsigned int min_seconds; member
103 int min_seconds; member
142 struct graph_line_data *alloc_line_data(unsigned int min_seconds, unsigned int max_seconds, unsigne…
143 struct graph_dot_data *alloc_dot_data(unsigned int min_seconds, unsigned int max_seconds, u64 min_o…
Dplot.c130 struct graph_line_data *alloc_line_data(unsigned int min_seconds, in alloc_line_data() argument
142 gld->min_seconds = min_seconds; in alloc_line_data()
148 struct graph_dot_data *alloc_dot_data(unsigned int min_seconds, in alloc_dot_data() argument
173 gdd->min_seconds = min_seconds; in alloc_dot_data()
192 double secs_per_col = (double)(gdd->max_seconds - gdd->min_seconds) / gdd->cols; in set_gdd_bit()
205 if (time < gdd->min_seconds || time > gdd->max_seconds) in set_gdd_bit()
210 col = (time - gdd->min_seconds) / secs_per_col; in set_gdd_bit()
766 return (gld->stop_seconds - gld->min_seconds) / 25; in rolling_span()
777 for (i = gld->min_seconds; i < gld->stop_seconds; i++) { in line_graph_roll_avg_max()
794 double xscale = (double)(gld->max_seconds - gld->min_seconds - 1) / graph_width; in svg_line_graph()
[all …]
Dblkparse.h76 unsigned int min_seconds; /* Beginning of the interval we should plot */ member
Dblkparse.c1079 …tf->gdd_reads[index] = alloc_dot_data(tf->min_seconds, tf->max_seconds, tf->min_offset, tf->max_of… in add_io()
1083 …tf->gdd_writes[index] = alloc_dot_data(tf->min_seconds, tf->max_seconds, tf->min_offset, tf->max_o… in add_io()
/external/libcxx/test/libcxx/input.output/filesystems/
Dconvert_file_time.sh.cpp83 using Base::min_seconds;
152 using Base::min_seconds;
162 static_assert(is_representable(TimeSpecT{min_seconds, 0}), ""); in test_timespec()
164 is_representable(TimeSpecT{min_seconds - 1, min_nsec_timespec}), ""); in test_timespec()
166 is_representable(TimeSpecT{min_seconds - 1, min_nsec_timespec + 1}), in test_timespec()
169 !is_representable(TimeSpecT{min_seconds - 1, min_nsec_timespec - 1}), in test_timespec()
192 min_seconds - 1, min_nsec_timespec}) == FileTimeT::min(), in test_convert_timespec()
195 TimeSpecT{min_seconds - 1, min_nsec_timespec + 1}) > in test_convert_timespec()
198 static_assert(convert_from_timespec(TimeSpecT{min_seconds, 0}) > in test_convert_timespec()
223 using Base::min_seconds;
/external/libcxx/src/filesystem/
Dfilesystem_common.h221 static constexpr rep min_seconds =
226 (FileTimeT::duration::min() - fs_seconds(min_seconds)) +
238 static_assert(fs_seconds(min_seconds) + get_min_nsecs() ==
247 duration_cast<Years>(fs_seconds(min_seconds)) < Years(-250); in check_range()
250 min_seconds <= numeric_limits<TimeT>::min(); in check_range()
266 static const rep min_seconds;
283 time_util_base<FileTimeT, TimeT, true>::min_seconds =
290 fs_seconds(min_seconds)) +
300 using Base::min_seconds;
322 } else if (tm.tv_sec == (min_seconds - 1)) {
[all …]
/external/libchrome/base/time/
Dtime_exploded_posix.cc249 const int64_t min_seconds = (sizeof(SysTime) < sizeof(int64_t)) in FromExploded() local
256 milliseconds = min_seconds * kMillisecondsPerSecond; in FromExploded()