Home
last modified time | relevance | path

Searched refs:max_seconds (Results 1 – 9 of 9) 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()
312 tf->max_seconds, in setup_trace_file_graphs()
342 tf->max_seconds = SECONDS(last_time) + 1; in read_traces()
365 tf->max_seconds = tf->trace->fio_seconds; in read_traces()
436 if (SECONDS(get_record_time(trace)) > tf->max_seconds) in read_trace_events()
539 static void compare_minmax_tf(struct trace_file *tf, unsigned int *max_seconds, in compare_minmax_tf() argument
[all …]
Dplot.h75 unsigned int max_seconds; member
106 unsigned int max_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.c131 unsigned int max_seconds, in alloc_line_data() argument
143 gld->max_seconds = max_seconds; in alloc_line_data()
149 unsigned int max_seconds, in alloc_dot_data() argument
174 gdd->max_seconds = max_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()
794 double xscale = (double)(gld->max_seconds - gld->min_seconds - 1) / graph_width; in svg_line_graph()
Dblkparse.h77 unsigned int max_seconds; /* End of the interval we should plot */ member
Dfio.c205 if (time > gld->max_seconds) in add_fio_gld()
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.cpp81 using Base::max_seconds;
150 using Base::max_seconds;
158 static_assert(is_representable(TimeSpecT{max_seconds, max_nsec}), ""); in test_timespec()
159 static_assert(!is_representable(TimeSpecT{max_seconds + 1, 0}), ""); in test_timespec()
160 static_assert(!is_representable(TimeSpecT{max_seconds, max_nsec + 1}), ""); in test_timespec()
182 static_assert(convert_from_timespec(TimeSpecT{max_seconds, max_nsec}) == in test_convert_timespec()
185 static_assert(convert_from_timespec(TimeSpecT{max_seconds, max_nsec - 1}) < in test_convert_timespec()
188 static_assert(convert_from_timespec(TimeSpecT{max_seconds - 1, 999999999}) < in test_convert_timespec()
221 using Base::max_seconds;
/external/libcxx/src/filesystem/
Dfilesystem_common.h213 static constexpr rep max_seconds =
218 fs_seconds(max_seconds))
246 return duration_cast<Years>(fs_seconds(max_seconds)) > Years(250) && in check_range()
249 return max_seconds >= numeric_limits<TimeT>::max() && in check_range()
264 static const rep max_seconds;
272 time_util_base<FileTimeT, TimeT, true>::max_seconds =
278 fs_seconds(max_seconds))
298 using Base::max_seconds;
320 return tm.tv_sec < max_seconds ||
321 (tm.tv_sec == max_seconds && tm.tv_nsec <= max_nsec);
/external/libchrome/base/time/
Dtime_exploded_posix.cc252 const int64_t max_seconds = (sizeof(SysTime) < sizeof(int64_t)) in FromExploded() local
258 milliseconds = max_seconds * kMillisecondsPerSecond; in FromExploded()