Home
last modified time | relevance | path

Searched refs:MAX_DELAY (Results 1 – 6 of 6) sorted by relevance

/external/ltp/include/
Dtst_common.h40 #define TST_RETRY_FN_EXP_BACKOFF(FUNC, ERET, MAX_DELAY) \ argument
43 tst_max_delay_ = tst_multiply_timeout(MAX_DELAY * 1000000); \
/external/kotlinx.coroutines/ui/kotlinx-coroutines-android/src/
DHandlerDispatcher.kt72 private const val MAX_DELAY = Long.MAX_VALUE / 2 // cannot delay for too long on Android in createDispatcher() constant
139 handler.postDelayed(block, timeMillis.coerceAtMost(MAX_DELAY)) in scheduleResumeAfterDelay()
144 handler.postDelayed(block, timeMillis.coerceAtMost(MAX_DELAY)) in invokeOnTimeout()
/external/kotlinx.coroutines/kotlinx-coroutines-core/js/src/
DJSDispatcher.kt12 private const val MAX_DELAY = Int.MAX_VALUE.toLong() in <lambda>() constant
15 timeMillis.coerceIn(0, MAX_DELAY).toInt() in <lambda>()
/external/webrtc/modules/audio_processing/aecm/
Daecm_defines.h26 #define MAX_DELAY 100 macro
Daecm_core.h62 uint16_t far_history[PART_LEN1 * MAX_DELAY];
64 int far_q_domains[MAX_DELAY];
Daecm_core.cc140 if (self->far_history_pos >= MAX_DELAY) { in WebRtcAecm_UpdateFarHistory()
176 buffer_position += MAX_DELAY; in WebRtcAecm_AlignedFarend()
222 WebRtc_CreateDelayEstimatorFarend(PART_LEN1, MAX_DELAY); in WebRtcAecm_CreateCore()
405 memset(aecm->far_history, 0, sizeof(uint16_t) * PART_LEN1 * MAX_DELAY); in WebRtcAecm_InitCore()
406 memset(aecm->far_q_domains, 0, sizeof(int) * MAX_DELAY); in WebRtcAecm_InitCore()
407 aecm->far_history_pos = MAX_DELAY; in WebRtcAecm_InitCore()