Home | History | Annotate | Download | only in util

Lines Matching refs:hist

82  * @param hist: to delete
84 void timehist_delete(struct timehist* hist);
88 * @param hist: to clear all data from
90 void timehist_clear(struct timehist* hist);
94 * @param hist: histogram
97 void timehist_insert(struct timehist* hist, struct timeval* tv);
103 * @param hist: histogram. Interpolated information is used from it.
107 double timehist_quartile(struct timehist* hist, double q);
111 * @param hist: histogram
113 void timehist_print(struct timehist* hist);
117 * @param hist: histogram
120 void timehist_log(struct timehist* hist, const char* name);
124 * @param hist: histogram
128 void timehist_export(struct timehist* hist, long long* array, size_t sz);
132 * @param hist: histogram
136 void timehist_import(struct timehist* hist, long long* array, size_t sz);