HomeSort by relevance Sort by last modified time
    Searched refs:_history (Results 1 - 5 of 5) sorted by null

  /external/webrtc/webrtc/modules/video_coding/
codec_timer.cc 21 : _filteredMax(0), _ignoredSampleCount(0), _shortMax(0), _history() {
30 _history[i].shortMax = 0;
31 _history[i].timeMs = -1;
46 if (_history[0].timeMs >= 0 && now - _history[0].timeMs < SHORT_FILTER_MS) {
52 if (_history[0].timeMs == -1) {
58 _history[i + 1].shortMax = _history[i].shortMax;
59 _history[i + 1].timeMs = _history[i].timeMs
    [all...]
codec_timer.h 52 VCMShortMaxSample _history[MAX_HISTORY_SIZE]; member in class:webrtc::VCMCodecTimer
  /external/opencv3/modules/video/src/
bgfg_KNN.cpp 95 BackgroundSubtractorKNNImpl(int _history, float _dist2Threshold, bool _bShadowDetection=true)
101 history = _history > 0 ? _history : defaultHistory2;
645 Ptr<BackgroundSubtractorKNN> createBackgroundSubtractorKNN(int _history, double _threshold2,
648 return makePtr<BackgroundSubtractorKNNImpl>(_history, (float)_threshold2, _bShadowDetection);
bgfg_gaussmix2.cpp 150 BackgroundSubtractorMOG2Impl(int _history, float _varThreshold, bool _bShadowDetection=true)
156 history = _history > 0 ? _history : defaultHistory2;
    [all...]
  /external/autotest/site_utils/
status_history.py 309 @property _history A list of jobs and special tasks that
389 self._history = None
407 if self._history is None:
408 self._history = self._get_history(self.start_time,
410 return self._history.__iter__()
477 The list is returned as with `self._history`, ordered from

Completed in 87 milliseconds