/external/openscreen/cast/streaming/ |
D | rtcp_common_unittest.cc | 128 original.delay_since_last_report = RtcpReportBlock::Delay(99999); in TEST() 166 expected.delay_since_last_report = RtcpReportBlock::Delay(99999); in TEST() 182 expected.delay_since_last_report + RtcpReportBlock::Delay(i - 2); in TEST() 274 using Delay = RtcpReportBlock::Delay; in TEST() typedef 283 EXPECT_EQ(Delay::zero(), ComputeDelay(Clock::duration::min())); in TEST() 284 EXPECT_EQ(Delay::zero(), ComputeDelay(milliseconds{-1234})); in TEST() 285 EXPECT_EQ(Delay::zero(), ComputeDelay(Clock::duration::zero())); in TEST() 288 EXPECT_EQ(Delay(32768 /* 1/2 second worth of ticks */), in TEST() 290 EXPECT_EQ(Delay(65536 /* 1 second worth of ticks */), in TEST() 292 EXPECT_EQ(Delay(655360 /* 10 seconds worth of ticks */), in TEST() [all …]
|
D | rtcp_common.cc | 189 constexpr Delay kMaxValidReportedDelay{std::numeric_limits<uint32_t>::max()}; in SetDelaySinceLastReport() 197 delay_since_last_report = Delay::zero(); in SetDelaySinceLastReport() 204 std::chrono::duration_cast<Delay>(local_clock_delay); in SetDelaySinceLastReport() 238 RtcpReportBlock::Delay(ConsumeField<uint32_t>(&buffer)); in ParseOne()
|
D | rtcp_common.h | 101 using Delay = std::chrono::duration<int64_t, std::ratio<1, 65536>>; member 102 Delay delay_since_last_report{};
|
/external/ImageMagick/Magick++/demo/ |
D | smile_anim.miff | 6 Scene=0 Iterations=0 Delay=10 Dispose=3 15 Scene=1 Iterations=1 Delay=10 Dispose=3 23 Scene=2 Iterations=1 Delay=10 Dispose=3 31 Scene=3 Iterations=1 Delay=10 Dispose=3 39 Scene=4 Iterations=1 Delay=10 Dispose=3 47 Scene=5 Iterations=1 Delay=10 Dispose=3
|
/external/tcpdump/tests/ |
D | lacp-ev.out | 9 Max Delay 32768 19 Max Delay 32768 29 Max Delay 32768 39 Max Delay 32768 49 Max Delay 32768 59 Max Delay 32768 69 Max Delay 32768 79 Max Delay 32768 89 Max Delay 32768 99 Max Delay 32768 [all …]
|
/external/webrtc/api/audio/ |
D | echo_canceller3_config.h | 35 struct Delay { struct 36 Delay(); 37 Delay(const Delay& e); 38 Delay& operator=(const Delay& e); argument
|
D | echo_canceller3_config.cc | 56 EchoCanceller3Config::Delay::Delay() = default; 57 EchoCanceller3Config::Delay::Delay(const EchoCanceller3Config::Delay& e) = 59 EchoCanceller3Config::Delay& EchoCanceller3Config::Delay::operator=( 60 const Delay& e) = default;
|
/external/webrtc/modules/video_coding/ |
D | jitter_estimator_tests.cc | 51 int64_t Delay() const { return ((counter_ % 11) - 5) * amplitude_; } in Delay() function in webrtc::ValueGenerator 53 uint32_t FrameSize() const { return 1000 + Delay(); } in FrameSize() 67 estimator_->UpdateEstimate(gen.Delay(), gen.FrameSize()); in TEST_F() 83 estimator_->UpdateEstimate(gen.Delay(), gen.FrameSize()); in TEST_F() 136 estimator_->UpdateEstimate(gen.Delay(), gen.FrameSize()); in TEST_F()
|
/external/webrtc/modules/audio_processing/aec3/ |
D | render_delay_controller_unittest.cc | 74 delay_buffer->Delay(), block); in TEST() 116 render_delay_buffer->Delay(), capture_block); in TEST() 170 signal_delay_buffer.Delay(render_block[0][0], capture_block[0]); in TEST() 175 render_delay_buffer->Delay(), capture_block); in TEST() 233 signal_delay_buffer.Delay(capture_block[0][0], in TEST() 239 render_delay_buffer->Delay(), capture_block[0]); in TEST() 294 signal_delay_buffer.Delay(render_block[0][0], in TEST() 303 render_delay_buffer->Delay(), capture_block_buffer[k]); in TEST() 340 render_delay_buffer->Delay(), block), in TEST()
|
D | matched_filter_lag_aggregator.h | 33 const EchoCanceller3Config::Delay::DelaySelectionThresholds& thresholds); 49 const EchoCanceller3Config::Delay::DelaySelectionThresholds thresholds_;
|
D | block_processor_unittest.cc | 157 EXPECT_CALL(*render_delay_buffer_mock, Delay()) in TEST() 175 signal_delay_buffer.Delay(render_block[0][0], capture_block[0][0]); in TEST() 207 EXPECT_CALL(*render_delay_buffer_mock, Delay()) in TEST() 233 signal_delay_buffer.Delay(render_block[0][0], capture_block[0][0]); in TEST()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/ |
D | Delay.kt | 21 public interface Delay { in <lambda>() interface 145 internal val CoroutineContext.delay: Delay get() = get(ContinuationInterceptor) as? Delay ?: Defaul…
|
/external/kotlinx.coroutines/kotlinx-coroutines-test/src/internal/ |
D | MainTestDispatcher.kt | 15 …MainDispatcher(private val mainFactory: MainDispatcherFactory) : MainCoroutineDispatcher(), Delay { 29 private val delay: Delay get() = delegate as? Delay ?: DefaultDelay
|
/external/rust/crates/futures/tests/ |
D | compat.rs | 3 use tokio::timer::Delay; 12 Delay::new(Instant::now()).compat().await in can_use_01_futures_in_a_03_future_running_on_a_01_executor()
|
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/ |
D | CallCredentialsTest.cs | 43 CallCredentials.FromInterceptor(async (uri, m) => { await Task.Delay(1); }), in CallCredentials_ToNativeCredentials() 44 CallCredentials.FromInterceptor(async (uri, m) => { await Task.Delay(2); })); in CallCredentials_ToNativeCredentials()
|
D | TimeoutsTest.cs | 94 await Task.Delay(60000); in DeadlineInThePast() 108 await Task.Delay(60000); in DeadlineExceededStatusOnTimeout()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/js/src/ |
D | CoroutineContext.kt | 41 internal actual val DefaultDelay: Delay in isJsdom() 42 get() = Dispatchers.Default as Delay in isJsdom()
|
D | JSDispatcher.kt | 17 internal sealed class SetTimeoutBasedDispatcher: CoroutineDispatcher(), Delay { in <lambda>() 75 internal class WindowDispatcher(private val window: Window) : CoroutineDispatcher(), Delay { in toString()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/native/src/ |
D | CoroutineContext.kt | 14 internal actual object DefaultExecutor : CoroutineDispatcher(), Delay { in takeEventLoop() 31 internal actual val DefaultDelay: Delay = DefaultExecutor in loopWasShutDown()
|
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/ |
D | RunnerClientServerTest.cs | 83 await Task.Delay(3000); in ClientServerRunner() 87 await Task.Delay(3000); in ClientServerRunner()
|
/external/webrtc/modules/audio_processing/test/ |
D | echo_canceller_test_tools_unittest.cc | 32 delay_buffer.Delay( in TEST() 51 delay_buffer.Delay( in TEST()
|
/external/cros/system_api/dbus/power_manager/ |
D | policy.proto | 46 // Delay after which |idle_action| is performed, in milliseconds. The 53 // Delay after which the screen will be turned off, in milliseconds. 0 59 // Delay after which the screen will be dimmed, in milliseconds. 0 66 // Delay after which the screen will be locked, in milliseconds. 0 73 // Delay after which an IdleActionImminent signal will be emitted, in
|
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L4A6RG/Drivers/STM32L4xx_HAL_Driver/Src/ |
D | stm32l4xx_hal.c | 329 __weak void HAL_Delay(uint32_t Delay) in HAL_Delay() argument 332 uint32_t wait = Delay; in HAL_Delay()
|
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L476RG/Drivers/STM32L4xx_HAL_Driver/Src/ |
D | stm32l4xx_hal.c | 329 __weak void HAL_Delay(uint32_t Delay) in HAL_Delay() argument 332 uint32_t wait = Delay; in HAL_Delay()
|
/external/kotlinx.coroutines/ui/kotlinx-coroutines-android/src/ |
D | HandlerDispatcher.kt | 22 public sealed class HandlerDispatcher : MainCoroutineDispatcher(), Delay { in <lambda>() 109 ) : HandlerDispatcher(), Delay {
|