Lines Matching full:rate
18 " --rateest1 name Rate estimator name\n"
19 " --rateest2 name Rate estimator name\n"
20 " --rateest-delta Compare difference(s) to given rate(s)\n"
25 " [!] --rateest-lt Match if rate is less than given rate/estimator\n"
26 " [!] --rateest-gt Match if rate is greater than given rate/estimator\n"
27 " [!] --rateest-eq Match if rate is equal to given rate/estimator\n");
87 rateest_get_rate(uint32_t *rate, const char *str)
97 *rate = bps / 8.; /* assume bytes/sec */
103 *rate = (bps * s->scale) / 8.;
163 /* The rate is optional and only required in absolute mode */
169 "rateest: could not parse rate `%s'",
187 /* The rate is optional and only required in absolute mode */
212 /* The rate is optional and only required in absolute mode */
218 "rateest: could not parse rate `%s'",
236 /* The rate is optional and only required in absolute mode */
318 rateest_print_rate(uint32_t rate, int numeric)
320 double tmp = (double)rate*8;
323 printf(" %u", rate);