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

  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
FirstFrameAnimatorHelper.java 35 private static final int MAX_DELAY = 1000;
91 // (give up after MAX_DELAY ms of waiting though - might happen, for example, if we
93 if (frameNum == 0 && currentTime < mStartTime + MAX_DELAY) {
102 } else if (frameNum == 1 && currentTime < mStartTime + MAX_DELAY &&
  /packages/apps/Launcher2/src/com/android/launcher2/
FirstFrameAnimatorHelper.java 36 private static final int MAX_DELAY = 1000;
104 // (give up after MAX_DELAY ms of waiting though - might happen, for example, if we
106 if (frameNum == 0 && currentTime < mStartTime + MAX_DELAY) {
115 } else if (frameNum == 1 && currentTime < mStartTime + MAX_DELAY &&
  /external/webrtc/src/modules/audio_processing/aecm/
aecm_core.h 42 #define MAX_DELAY 100
130 uint16_t far_history[PART_LEN1 * MAX_DELAY];
132 int far_q_domains[MAX_DELAY];
aecm_core.c 220 if (self->far_history_pos >= MAX_DELAY) {
255 buffer_position += MAX_DELAY;
317 MAX_DELAY,
598 memset(aecm->far_history, 0, sizeof(uint16_t) * PART_LEN1 * MAX_DELAY);
599 memset(aecm->far_q_domains, 0, sizeof(int) * MAX_DELAY);
600 aecm->far_history_pos = MAX_DELAY;
    [all...]

Completed in 245 milliseconds