OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:_avg
(Results
1 - 2
of
2
) sorted by null
/external/blktrace/btt/
inlines.h
182
#define UPDATE_AVGS(
_avg
, _iop, _pip, _time) do { \
183
avg_update(&all_avgs.
_avg
, _time); \
184
avg_update(&_iop->dip->avgs.
_avg
, _time); \
185
if (_pip) avg_update(&_pip->avgs.
_avg
, _time); \
188
#define UPDATE_AVGS_N(
_avg
, _iop, _pip, _time, _n) do { \
189
avg_update_n(&all_avgs.
_avg
, _time, _n); \
190
avg_update_n(&_iop->dip->avgs.
_avg
, _time, _n); \
191
if (_pip) avg_update_n(&_pip->avgs.
_avg
, _time,_n); \
194
#define UNUPDATE_AVGS(
_avg
, _iop, _pip, _time) do { \
195
avg_unupdate(&all_avgs.
_avg
, _time);
[
all
...]
btt_plot.py
113
def
_avg
(vals):
function in function:get_data.avg
133
axs.append(
_avg
(_xs))
134
ays.append(
_avg
(_ys))
144
axs.append(
_avg
(_xs))
145
ays.append(
_avg
(_ys))
Completed in 51 milliseconds