Searched refs:timespan (Results 1 - 4 of 4) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dtimespan.tex7 %% RCS-ID: $Id: timespan.tex 38510 2006-04-02 00:58:44Z VZ $
100 Returns the absolute value of the timespan: does not modify the
119 Returns the timespan for the given number of days.
126 Returns the timespan for one day.
200 Returns the internal representation of timespan.
214 Returns the timespan for the given number of hours.
221 Returns the timespan for one hour.
244 Returns {\tt true} if the timespan is negative.
251 Returns {\tt true} if the timespan is empty.
258 Returns {\tt true} if the timespan i
[all...]
H A Dclasses.tex413 \input timespan.tex
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DStatistics.h71 * @param timespan Desired timespan for rate calculations.
74 CPreciseRateCounter(uint32_t timespan, bool count_average = false) argument
75 : m_timespan(timespan), m_total(0), m_rate(0.0), m_max_rate(0.0), m_tmp_sum(0), m_count_average(count_average)
79 uint64_t target_time = cur_time - timespan;
113 * Sets desired timespan for rate calculations.
115 * If new timespan is greater than the old was, then the change
117 * to take effect is new minus old value of the timespan.
119 * If the new timespan is lower than the old, the change takes
122 void SetTimespan(uint32_t timespan) { wxMutexLocke argument
156 CStatTreeItemRateCounter(const wxString& label, bool show_maxrate, uint32_t timespan, bool count_average = false) argument
[all...]
H A DStatistics.cpp76 uint64_t timespan = now - m_tick_history.front(); local
78 // Checking maximal timespan, but make sure not to remove
80 while (timespan > m_timespan && m_byte_history.size() > 0) {
84 timespan = now - m_tick_history.front();
93 if (timespan > 0) {
94 m_rate = m_total / (timespan / 1000.0);

Completed in 120 milliseconds