HomeSort by relevance Sort by last modified time
    Searched refs:max_seconds (Results 1 - 9 of 9) sorted by null

  /external/blktrace/iowatcher/
main.c 286 tf->tput_reads_gld = alloc_line_data(tf->min_seconds, tf->max_seconds, tf->stop_seconds);
287 tf->tput_writes_gld = alloc_line_data(tf->min_seconds, tf->max_seconds, tf->stop_seconds);
288 tf->latency_gld = alloc_line_data(tf->min_seconds, tf->max_seconds, tf->stop_seconds);
289 tf->queue_depth_gld = alloc_line_data(tf->min_seconds, tf->max_seconds, tf->stop_seconds);
291 tf->iop_gld = alloc_line_data(tf->min_seconds, tf->max_seconds, tf->stop_seconds);
312 tf->max_seconds,
342 tf->max_seconds = SECONDS(last_time) + 1;
365 tf->max_seconds = tf->trace->fio_seconds;
436 if (SECONDS(get_record_time(trace)) > tf->max_seconds)
539 static void compare_minmax_tf(struct trace_file *tf, unsigned int *max_seconds,
1595 unsigned int max_seconds = 0; local
    [all...]
plot.h 75 unsigned int max_seconds; member in struct:graph_line_data
106 unsigned int max_seconds; member in struct:graph_dot_data
142 struct graph_line_data *alloc_line_data(unsigned int min_seconds, unsigned int max_seconds, unsigned int stop_seconds);
143 struct graph_dot_data *alloc_dot_data(unsigned int min_seconds, unsigned int max_seconds, u64 min_offset, u64 max_offset, unsigned int stop_seconds, char *color, char *label);
blkparse.h 77 unsigned int max_seconds; /* End of the interval we should plot */ member in struct:trace_file
plot.c 131 unsigned int max_seconds,
143 gld->max_seconds = max_seconds;
149 unsigned int max_seconds,
174 gdd->max_seconds = max_seconds;
192 double secs_per_col = (double)(gdd->max_seconds - gdd->min_seconds) / gdd->cols;
205 if (time < gdd->min_seconds || time > gdd->max_seconds)
794 double xscale = (double)(gld->max_seconds - gld->min_seconds - 1) / graph_width;
fio.c 205 if (time > gld->max_seconds)
blkparse.c 1079 tf->gdd_reads[index] = alloc_dot_data(tf->min_seconds, tf->max_seconds, tf->min_offset, tf->max_offset, tf->stop_seconds, pick_color(), strdup(label));
1083 tf->gdd_writes[index] = alloc_dot_data(tf->min_seconds, tf->max_seconds, tf->min_offset, tf->max_offset, tf->stop_seconds, pick_color(), strdup(label));
  /external/libcxx/test/libcxx/input.output/filesystems/
convert_file_time.sh.cpp 81 using Base::max_seconds;
150 using Base::max_seconds;
158 static_assert(is_representable(TimeSpecT{max_seconds, max_nsec}), "");
159 static_assert(!is_representable(TimeSpecT{max_seconds + 1, 0}), "");
160 static_assert(!is_representable(TimeSpecT{max_seconds, max_nsec + 1}), "");
182 static_assert(convert_from_timespec(TimeSpecT{max_seconds, max_nsec}) ==
185 static_assert(convert_from_timespec(TimeSpecT{max_seconds, max_nsec - 1}) <
188 static_assert(convert_from_timespec(TimeSpecT{max_seconds - 1, 999999999}) <
221 using Base::max_seconds;
  /external/libcxx/src/filesystem/
filesystem_common.h 213 static constexpr rep max_seconds = member in struct:detail::__anon27894::time_util_base
218 fs_seconds(max_seconds))
246 return duration_cast<Years>(fs_seconds(max_seconds)) > Years(250) &&
249 return max_seconds >= numeric_limits<TimeT>::max() &&
264 static const rep max_seconds; member in struct:detail::__anon27894::time_util_base
272 time_util_base<FileTimeT, TimeT, true>::max_seconds = member in class:detail::__anon27894::time_util_base
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)
    [all...]
  /external/libchrome/base/time/
time_exploded_posix.cc 252 const int64_t max_seconds = (sizeof(SysTime) < sizeof(int64_t)) local
258 milliseconds = max_seconds * kMillisecondsPerSecond;

Completed in 446 milliseconds