Searched refs:history_cursor_ (Results 1 – 2 of 2) sorted by relevance
67 history_cursor_(0), in VarianceArray()166 history_[i][history_cursor_] = data[i]; in WindowedStep()168 mean = history_[i][history_cursor_]; in WindowedStep()172 zerofudge(history_[i][(history_cursor_ + j) % window_size_]); in WindowedStep()173 sample = history_[i][(history_cursor_ + j) % window_size_]; in WindowedStep()184 history_cursor_ = (history_cursor_ + 1) % window_size_; in WindowedStep()194 size_t blocks = min(window_size_, history_cursor_ + 1); in BlockedStep()199 subhistory_[i][history_cursor_ % window_size_] = sub_running_mean_[i]; in BlockedStep()200 subhistory_sq_[i][history_cursor_ % window_size_] = sub_running_mean_sq_[i]; in BlockedStep()212 for (size_t j = 0; j < min(window_size_, history_cursor_); ++j) { in BlockedStep()[all …]
127 size_t history_cursor_; variable