/third_party/python/Modules/_multiprocessing/ |
D | semaphore.c | 231 # define sem_timedwait(sem,deadline) sem_timedwait_save(sem,deadline,_save) argument 234 sem_timedwait_save(sem_t *sem, struct timespec *deadline, PyThreadState *_save) in sem_timedwait_save() argument 241 tvdeadline.tv_sec = deadline->tv_sec; in sem_timedwait_save() 242 tvdeadline.tv_usec = deadline->tv_nsec / 1000; in sem_timedwait_save() 308 struct timespec deadline = {0}; in _multiprocessing_SemLock_acquire_impl() local 332 deadline.tv_sec = now.tv_sec + sec; in _multiprocessing_SemLock_acquire_impl() 333 deadline.tv_nsec = now.tv_usec * 1000 + nsec; in _multiprocessing_SemLock_acquire_impl() 334 deadline.tv_sec += (deadline.tv_nsec / 1000000000); in _multiprocessing_SemLock_acquire_impl() 335 deadline.tv_nsec %= 1000000000; in _multiprocessing_SemLock_acquire_impl() 353 res = sem_timedwait(self->handle, &deadline); in _multiprocessing_SemLock_acquire_impl()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/ |
D | mutex.h | 342 bool AwaitWithDeadline(const Condition &cond, absl::Time deadline); 375 bool LockWhenWithDeadline(const Condition &cond, absl::Time deadline) 377 bool ReaderLockWhenWithDeadline(const Condition &cond, absl::Time deadline) 379 bool WriterLockWhenWithDeadline(const Condition &cond, absl::Time deadline) in WriterLockWhenWithDeadline() argument 381 return this->LockWhenWithDeadline(cond, deadline); in WriterLockWhenWithDeadline() 837 bool WaitWithDeadline(Mutex *mu, absl::Time deadline);
|
D | notification.cc | 67 bool Notification::WaitForNotificationWithDeadline(absl::Time deadline) const { in WaitForNotificationWithDeadline() 71 Condition(&HasBeenNotifiedInternal, &this->notified_yet_), deadline); in WaitForNotificationWithDeadline()
|
/third_party/python/Lib/test/ |
D | test_wait4.py | 23 deadline = time.monotonic() + support.SHORT_TIMEOUT 24 while time.monotonic() <= deadline:
|
D | test_wait3.py | 23 deadline = time.monotonic() + support.SHORT_TIMEOUT 24 while time.monotonic() <= deadline:
|
D | signalinterproctester.py | 32 deadline = time.monotonic() + timeout 34 while time.monotonic() < deadline:
|
D | fork_wait.py | 57 deadline = time.monotonic() + support.SHORT_TIMEOUT 60 if deadline < time.monotonic():
|
/third_party/python/Modules/ |
D | selectmodule.c | 268 _PyTime_t timeout, deadline = 0; in select_select_impl() local 322 deadline = _PyTime_GetMonotonicClock() + timeout; in select_select_impl() 338 timeout = deadline - _PyTime_GetMonotonicClock(); in select_select_impl() 582 _PyTime_t timeout = -1, ms = -1, deadline = 0; in select_poll_poll_impl() local 602 deadline = _PyTime_GetMonotonicClock() + timeout; in select_poll_poll_impl() 649 timeout = deadline - _PyTime_GetMonotonicClock(); in select_poll_poll_impl() 907 _PyTime_t timeout, ms, deadline = 0; in select_devpoll_poll_impl() local 942 deadline = _PyTime_GetMonotonicClock() + timeout; in select_devpoll_poll_impl() 959 timeout = deadline - _PyTime_GetMonotonicClock(); in select_devpoll_poll_impl() 1519 _PyTime_t timeout = -1, ms = -1, deadline = 0; in select_epoll_poll_impl() local [all …]
|
/third_party/gstreamer/gstplugins_good/ext/vpx/ |
D | gstvpxdec.c | 678 GstClockTimeDiff deadline; in gst_vpx_dec_handle_frame() local 705 deadline = gst_video_decoder_get_max_decode_time (decoder, frame); in gst_vpx_dec_handle_frame() 706 if (deadline < 0) { in gst_vpx_dec_handle_frame() 708 } else if (deadline == G_MAXINT64) { in gst_vpx_dec_handle_frame() 711 decoder_deadline = MAX (1, deadline / GST_MSECOND); in gst_vpx_dec_handle_frame() 750 if (deadline < 0) { in gst_vpx_dec_handle_frame() 752 (double) -deadline / GST_SECOND); in gst_vpx_dec_handle_frame()
|
D | GstVP8Enc.prs | 6 deadline=1
|
/third_party/flutter/engine/flutter/shell/common/ |
D | ace_engine.cc | 129 void Engine::NotifyIdle(int64_t deadline) { in NotifyIdle() argument 131 std::to_string(deadline).c_str()); in NotifyIdle() 132 runtime_controller_->NotifyIdle(deadline); in NotifyIdle()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/ |
D | clock_test.cc | 55 const absl::Time deadline = absl::Now() + timeout; in SleepForBounded() local 56 while (absl::Now() < deadline) { in SleepForBounded()
|
/third_party/gstreamer/gstplugins_bad/ext/openexr/ |
D | gstopenexrdec.cpp | 317 gint64 deadline; in gst_openexr_dec_handle_frame() local 323 deadline = gst_video_decoder_get_max_decode_time (decoder, frame); in gst_openexr_dec_handle_frame() 324 if (deadline < 0) { in gst_openexr_dec_handle_frame() 326 deadline); in gst_openexr_dec_handle_frame()
|
/third_party/python/Lib/test/support/ |
D | threading_helper.py | 90 deadline = start_time + timeout 95 if time.monotonic() > deadline:
|
/third_party/skia/third_party/externals/abseil-cpp/absl/flags/internal/ |
D | sequence_lock_test.cc | 91 absl::Time deadline = absl::Now() + absl::Seconds(5); in TEST_P() local 92 for (int i = 0; i < 100 && absl::Now() < deadline; i++) { in TEST_P()
|
/third_party/flutter/flutter/packages/flutter/lib/src/gestures/ |
D | recognizer.dart | 368 /// Initializes the [deadline] field during construction of subclasses. 372 this.deadline, 389 final Duration deadline; 433 if (deadline != null) 434 _timer = Timer(deadline, () => didExceedDeadlineWithEvent(event)); 465 /// Override to be notified when [deadline] is exceeded. 468 /// supply a [deadline]. 471 assert(deadline == null); 478 /// [deadline].
|
/third_party/flutter/engine/flutter/runtime/ |
D | ace_runtime_controller.cc | 121 bool RuntimeController::NotifyIdle(int64_t deadline) { in NotifyIdle() argument 125 idle_notification_callback_(deadline); in NotifyIdle()
|
D | runtime_controller.cc | 241 bool RuntimeController::NotifyIdle(int64_t deadline) { in NotifyIdle() argument 249 Dart_NotifyIdle(deadline); in NotifyIdle() 254 idle_notification_callback_(deadline); in NotifyIdle()
|
/third_party/python/Lib/ |
D | telnetlib.py | 311 deadline = _time() + timeout 326 timeout = deadline - _time() 616 deadline = _time() + timeout 630 timeout = deadline - _time()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/ |
D | gstvideodecoder.c | 575 dec, GstClockTime deadline, GstVideoDecoderRequestSyncPointFlags flags); 1380 GstClockTime deadline = in gst_video_decoder_handle_missing_data_default() local 1387 GST_TIME_FORMAT, GST_TIME_ARGS (deadline), GST_TIME_ARGS (timestamp), in gst_video_decoder_handle_missing_data_default() 1390 gst_video_decoder_request_sync_point_internal (decoder, deadline, in gst_video_decoder_handle_missing_data_default() 3797 GstClockTime deadline = in gst_video_decoder_clip_and_push_buf() local 3799 if (GST_CLOCK_TIME_IS_VALID (deadline) && deadline < priv->earliest_time) { in gst_video_decoder_clip_and_push_buf() 3803 GST_TIME_ARGS (start), GST_TIME_ARGS (deadline), in gst_video_decoder_clip_and_push_buf() 4075 frame->deadline = in gst_video_decoder_decode_frame() 4912 GstClockTimeDiff deadline; in gst_video_decoder_get_max_decode_time() local 4918 && GST_CLOCK_TIME_IS_VALID (frame->deadline)) in gst_video_decoder_get_max_decode_time() [all …]
|
/third_party/flutter/flutter/examples/flutter_gallery/lib/gallery/ |
D | about.dart | 16 // given a deadline and therefore never allocates any resources. 18 // In any other situation -- setting a deadline, using any of the less trivial
|
/third_party/skia/third_party/externals/oboe/src/common/ |
D | AudioStream.cpp | 172 int64_t deadline = AudioClock::getNanoseconds() + timeoutNanoseconds; in waitForAvailableFrames() local 180 if (now > deadline) break; in waitForAvailableFrames()
|
/third_party/ffmpeg/presets/ |
D | libvpx-360p.ffpreset | 5 deadline=good
|
D | libvpx-1080p.ffpreset | 5 deadline=good
|
D | libvpx-720p.ffpreset | 5 deadline=good
|