Home
last modified time | relevance | path

Searched refs:Delay (Results 1 – 25 of 187) sorted by relevance

12345678

/external/openscreen/cast/streaming/
Drtcp_common_unittest.cc128 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 …]
Drtcp_common.cc189 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()
Drtcp_common.h101 using Delay = std::chrono::duration<int64_t, std::ratio<1, 65536>>; member
102 Delay delay_since_last_report{};
/external/ImageMagick/Magick++/demo/
Dsmile_anim.miff6 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/
Dlacp-ev.out9 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/
Decho_canceller3_config.h35 struct Delay { struct
36 Delay();
37 Delay(const Delay& e);
38 Delay& operator=(const Delay& e); argument
Decho_canceller3_config.cc56 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/
Djitter_estimator_tests.cc51 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/
Drender_delay_controller_unittest.cc74 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()
Dmatched_filter_lag_aggregator.h33 const EchoCanceller3Config::Delay::DelaySelectionThresholds& thresholds);
49 const EchoCanceller3Config::Delay::DelaySelectionThresholds thresholds_;
Dblock_processor_unittest.cc157 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/
DDelay.kt21 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/
DMainTestDispatcher.kt15 …MainDispatcher(private val mainFactory: MainDispatcherFactory) : MainCoroutineDispatcher(), Delay {
29 private val delay: Delay get() = delegate as? Delay ?: DefaultDelay
/external/rust/crates/futures/tests/
Dcompat.rs3 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/
DCallCredentialsTest.cs43 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()
DTimeoutsTest.cs94 await Task.Delay(60000); in DeadlineInThePast()
108 await Task.Delay(60000); in DeadlineExceededStatusOnTimeout()
/external/kotlinx.coroutines/kotlinx-coroutines-core/js/src/
DCoroutineContext.kt41 internal actual val DefaultDelay: Delay in isJsdom()
42 get() = Dispatchers.Default as Delay in isJsdom()
DJSDispatcher.kt17 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/
DCoroutineContext.kt14 internal actual object DefaultExecutor : CoroutineDispatcher(), Delay { in takeEventLoop()
31 internal actual val DefaultDelay: Delay = DefaultExecutor in loopWasShutDown()
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/
DRunnerClientServerTest.cs83 await Task.Delay(3000); in ClientServerRunner()
87 await Task.Delay(3000); in ClientServerRunner()
/external/webrtc/modules/audio_processing/test/
Decho_canceller_test_tools_unittest.cc32 delay_buffer.Delay( in TEST()
51 delay_buffer.Delay( in TEST()
/external/cros/system_api/dbus/power_manager/
Dpolicy.proto46 // 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/
Dstm32l4xx_hal.c329 __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/
Dstm32l4xx_hal.c329 __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/
DHandlerDispatcher.kt22 public sealed class HandlerDispatcher : MainCoroutineDispatcher(), Delay { in <lambda>()
109 ) : HandlerDispatcher(), Delay {

12345678