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

  /external/fio/
tickmarks.h 10 int *power_of_ten, int use_KMG_symbols, int base_off);
tickmarks.c 42 static void shorten(struct tickmark *tm, int nticks, int *power_of_ten,
57 *power_of_ten = 9;
61 *power_of_ten = 6;
64 *power_of_ten = 3;
67 *power_of_ten = 0;
70 if (*power_of_ten < minshorten)
71 minshorten = *power_of_ten;
91 int *power_of_ten, int use_KMG_symbols, int base_offset)
117 shorten(*tm, i, power_of_ten, use_KMG_symbols, base_offset);
graph.h 73 typedef void (*graph_axis_unit_change_callback)(struct graph *g, int power_of_ten);
78 * titles to display the proper units. The power_of_ten parameter indicates what power
graph.c 319 int i, power_of_ten; local
322 nticks = calc_tickmarks(minx, maxx, nticks, &tm, &power_of_ten,
325 g->x_axis_unit_change_callback(g, power_of_ten);
375 int i, power_of_ten; local
378 nticks = calc_tickmarks(miny, maxy, nticks, &tm, &power_of_ten,
381 g->y_axis_unit_change_callback(g, power_of_ten);

Completed in 440 milliseconds