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

  /external/fio/
graph.h 21 void line_graph_set_data_count_limit(struct graph *g, int per_label_limit);
graph.c 84 int per_label_limit; member in struct:graph
124 g->per_label_limit = -1;
762 if (g->per_label_limit != -1 &&
763 i->value_count > g->per_label_limit) {
772 if (i->value_count - g->per_label_limit >= 2)
782 if (i->value_count <= g->per_label_limit)
903 /* For each line in the line graph, up to per_label_limit segments may
907 void line_graph_set_data_count_limit(struct graph *g, int per_label_limit)
909 g->per_label_limit = per_label_limit;
    [all...]

Completed in 73 milliseconds