/third_party/ltp/testcases/realtime/func/gtod_latency/ |
D | gtod_infinite.c | 107 nsec_t max_time = START_MAX; in main() local 177 ((diff_time > max_time) || (diff_time > REPORT_MIN))) { in main() 178 if (diff_time > max_time) in main() 179 max_time = diff_time; in main() 184 max_time, ctime(&tt)); in main() 188 max_time = 0; in main()
|
/third_party/openssl/doc/man3/ |
D | BIO_socket_wait.pod | 15 int BIO_socket_wait(int fd, int for_read, time_t max_time); 17 int BIO_wait(BIO *bio, time_t max_time, unsigned int nap_milliseconds); 23 else for writing, at most until B<max_time>. 24 It succeeds immediately if B<max_time> == 0 (which means no timeout given). 26 BIO_wait() waits at most until B<max_time> on the given (typically socket-based) 29 It succeeds immediately if B<max_time> == 0 (which means no timeout given).
|
/third_party/musl/porting/liteos_a/user/src/select/ |
D | select.c | 15 const time_t max_time = (1ULL<<8*sizeof(time_t)-1)-1; in select() local 18 if (us/1000000 > max_time - s) { in select() 19 s = max_time; in select()
|
/third_party/musl/src/select/ |
D | select.c | 15 const time_t max_time = (1ULL<<8*sizeof(time_t)-1)-1; in select() local 18 if (us/1000000 > max_time - s) { in select() 19 s = max_time; in select()
|
/third_party/rust/crates/minimal-lexical/scripts/ |
D | timings.py | 135 max_time = 0 139 max_time = max(timings[key][0], max_time) 140 return max_time
|
/third_party/gstreamer/gstplugins_base/tests/check/elements/ |
D | urisourcebin.c | 32 guint64 min_time, max_time, avg_time; in GST_START_TEST() local 58 "maximum-time-level", &max_time)); in GST_START_TEST() 59 fail_unless_equals_int (0, max_time); in GST_START_TEST()
|
/third_party/openssl/crypto/bio/ |
D | bio_sock.c | 393 int BIO_socket_wait(int fd, int for_read, time_t max_time) in BIO_socket_wait() argument 401 if (max_time == 0) in BIO_socket_wait() 405 if (max_time < now) in BIO_socket_wait() 411 tv.tv_sec = (long)(max_time - now); /* might overflow */ in BIO_socket_wait()
|
D | bio_lib.c | 861 static int bio_wait(BIO *bio, time_t max_time, unsigned int nap_milliseconds) in bio_wait() argument 868 if (max_time == 0) /* no timeout */ in bio_wait() 873 return BIO_socket_wait(fd, BIO_should_read(bio), max_time); in bio_wait() 877 sec_diff = (long)(max_time - time(NULL)); /* might overflow */ in bio_wait() 901 int BIO_wait(BIO *bio, time_t max_time, unsigned int nap_milliseconds) in BIO_wait() argument 903 int rv = bio_wait(bio, max_time, nap_milliseconds); in BIO_wait() 922 time_t max_time = timeout > 0 ? time(NULL) + timeout : 0; in BIO_do_connect_retry() local 965 rv = bio_wait(bio, max_time, nap_milliseconds); in BIO_do_connect_retry()
|
/third_party/openssl/crypto/http/ |
D | http_client.c | 66 time_t max_time; /* Maximum end time of current transfer, or 0 */ member 259 rctx->max_time = timeout > 0 ? time(NULL) + timeout : 0; in OSSL_HTTP_REQ_CTX_set_expected() 261 rctx->max_time = rctx->max_total_time; in OSSL_HTTP_REQ_CTX_set_expected() 494 static int may_still_retry(time_t max_time, int *ptimeout) in may_still_retry() argument 498 if (max_time != 0) { in may_still_retry() 499 if (max_time < now) { in may_still_retry() 503 time_diff = max_time - now; in may_still_retry() 892 if (BIO_wait(rctx->rbio, rctx->max_time, 100 /* milliseconds */) <= 0) in OSSL_HTTP_REQ_CTX_exchange() 1127 time_t max_time = timeout > 0 ? time(NULL) + timeout : 0; in OSSL_HTTP_get() local 1159 && may_still_retry(max_time, &timeout)) { in OSSL_HTTP_get() [all …]
|
/third_party/lwip/src/core/ipv4/ |
D | igmp.c | 102 static void igmp_start_timer(struct igmp_group *group, u8_t max_time); 729 igmp_start_timer(struct igmp_group *group, u8_t max_time) argument 732 group->timer = (u16_t)(max_time > 2 ? (LWIP_RAND() % max_time) : 1); 735 group->timer = max_time / 2;
|
/third_party/tzdata/ |
D | zic.c | 669 static zic_t const max_time = MAXVAL(zic_t, TIME_T_BITS_IN_FILE); variable 684 intmax_t lo = min_time, hi = max_time; in timerange_option() 700 if (*hi_end || hi < lo || max_time < lo || hi < min_time) in timerange_option() 703 hi_time = max_time < hi ? max_time : hi; in timerange_option() 1609 z.z_untiltime < max_time && in inzsub() 1611 zones[nzones - 1].z_untiltime < max_time && in inzsub() 1698 if (dayoff > max_time / SECSPERDAY) { in getleapdatetime() 1999 if (hi < max_time) { in limitrange() 2208 hicut = hi_time < max_time; in writezone() 2639 if (hi_time < max_time) in stringzone() [all …]
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/app/ |
D | gstappsrc.c | 168 guint64 max_bytes, max_buffers, max_time; member 765 priv->max_time = DEFAULT_PROP_MAX_TIME; in gst_app_src_init() 1778 priv->min_percent) || (priv->max_time in gst_app_src_create() 1779 && priv->queued_time * 100 / priv->max_time <= in gst_app_src_create() 2275 if (max != priv->max_time) { in gst_app_src_set_max_time() 2278 priv->max_time = max; in gst_app_src_set_max_time() 2306 result = priv->max_time; in gst_app_src_get_max_time() 2576 (priv->max_time && priv->queued_time >= priv->max_time)) { in gst_app_src_push_internal() 2584 GST_TIME_ARGS (priv->max_time)); in gst_app_src_push_internal()
|
/third_party/skia/third_party/externals/icu/source/tools/tzcode/ |
D | zic.c | 867 static const zic_t max_time = -1 - ((zic_t) -1 << (TIME_T_BITS_IN_FILE - 1)); variable 1245 z.z_untiltime < max_time && in inzsub() 1247 zones[nzones - 1].z_untiltime < max_time && in inzsub() 1330 if (dayoff > max_time / SECSPERDAY) { in inleap() 2522 jtime == max_time) in outzone() 2964 if (t1 == max_time && t2 > 0) in tadd() 2965 return max_time; in tadd() 2968 if (t1 < 0 ? t2 < min_time - t1 : max_time - t1 < t2) { in tadd() 2990 return max_time; in rpytime() 3055 if (dayoff > max_time / SECSPERDAY) in rpytime() [all …]
|
/third_party/flutter/skia/third_party/externals/icu/source/tools/tzcode/ |
D | zic.c | 867 static const zic_t max_time = -1 - ((zic_t) -1 << (TIME_T_BITS_IN_FILE - 1)); variable 1245 z.z_untiltime < max_time && in inzsub() 1247 zones[nzones - 1].z_untiltime < max_time && in inzsub() 1330 if (dayoff > max_time / SECSPERDAY) { in inleap() 2522 jtime == max_time) in outzone() 2964 if (t1 == max_time && t2 > 0) in tadd() 2965 return max_time; in tadd() 2968 if (t1 < 0 ? t2 < min_time - t1 : max_time - t1 < t2) { in tadd() 2990 return max_time; in rpytime() 3055 if (dayoff > max_time / SECSPERDAY) in rpytime() [all …]
|
/third_party/icu/icu4c/source/tools/tzcode/ |
D | zic.c | 867 static const zic_t max_time = -1 - ((zic_t) -1 << (TIME_T_BITS_IN_FILE - 1)); variable 1245 z.z_untiltime < max_time && in inzsub() 1247 zones[nzones - 1].z_untiltime < max_time && in inzsub() 1330 if (dayoff > max_time / SECSPERDAY) { in inleap() 2522 jtime == max_time) in outzone() 2964 if (t1 == max_time && t2 > 0) in tadd() 2965 return max_time; in tadd() 2968 if (t1 < 0 ? t2 < min_time - t1 : max_time - t1 < t2) { in tadd() 2990 return max_time; in rpytime() 3055 if (dayoff > max_time / SECSPERDAY) in rpytime() [all …]
|
/third_party/f2fs-tools/tools/f2fs_io/ |
D | f2fs_io.c | 525 u64 total_time = 0, max_time = 0, max_time_t = 0; in do_write() local 592 if (max_time < max_time_t) in do_write() 593 max_time = max_time_t; in do_write() 623 max_time); in do_write()
|
/third_party/lwip/test/sockets/ |
D | sockets_stresstest.c | 439 u32_t max_time = sys_now() + (TEST_TIME_SECONDS * 1000); in sockets_stresstest_conn_client() local 473 while (sys_now() < max_time) { in sockets_stresstest_conn_client()
|
/third_party/gstreamer/gstplugins_base/gst/playback/ |
D | gstdecodebin2.c | 4150 guint64 max_time; in decodebin_set_queue_size_full() local 4161 if (preroll || (max_time = dbin->max_size_time) == 0) { in decodebin_set_queue_size_full() 4163 max_time = 5 * GST_SECOND; in decodebin_set_queue_size_full() 4165 max_time = seekable ? AUTO_PREROLL_SEEKABLE_SIZE_TIME : in decodebin_set_queue_size_full() 4179 max_time = 0; in decodebin_set_queue_size_full() 4180 else if ((max_time = dbin->max_size_time) == 0) in decodebin_set_queue_size_full() 4181 max_time = AUTO_PLAY_SIZE_TIME; in decodebin_set_queue_size_full() 4185 "%" G_GUINT64_FORMAT " time", max_bytes, max_buffers, max_time); in decodebin_set_queue_size_full() 4187 "max-size-bytes", max_bytes, "max-size-time", max_time, in decodebin_set_queue_size_full()
|
D | gsturidecodebin.c | 2149 guint64 max_time; in make_decoder() local 2154 if ((max_time = decoder->buffer_duration) == -1) in make_decoder() 2155 max_time = 5 * GST_SECOND; in make_decoder() 2158 (guint) 0, "max-size-time", max_time, NULL); in make_decoder()
|
/third_party/openssl/include/openssl/ |
D | bio.h.in | 684 int BIO_socket_wait(int fd, int for_read, time_t max_time); 686 int BIO_wait(BIO *bio, time_t max_time, unsigned int nap_milliseconds);
|
/third_party/mesa3d/src/vulkan/overlay-layer/ |
D | overlay.cpp | 984 double max_time = data->stats_max.stats[s] / data->time_dividor; in compute_swapchain_display() local 987 NULL, min_time, max_time, in compute_swapchain_display() 991 min_time, max_time); in compute_swapchain_display()
|
/third_party/gstreamer/gstplugins_good/gst/avi/ |
D | gstavidemux.c | 5164 guint64 min_time, max_time; in gst_avi_demux_find_next() local 5167 max_time = 0; in gst_avi_demux_find_next() 5188 } else if (rate < 0.0 && position >= max_time) { in gst_avi_demux_find_next() 5189 max_time = position; in gst_avi_demux_find_next()
|
/third_party/ffmpeg/libavformat/ |
D | utils.c | 3277 int64_t max_time = 0; local 3284 max_time = s->duration + 3294 int64_t end = max_time ? av_rescale_q(max_time, AV_TIME_BASE_Q,
|
/third_party/gstreamer/gstplugins_good/gst/isomp4/ |
D | qtdemux.c | 1137 guint64 max_time = 0; in gst_qtdemux_adjust_seek() local 1231 GST_TIME_ARGS (desired_time), next, GST_TIME_ARGS (max_time)); in gst_qtdemux_adjust_seek() 1236 if ((min_duration < desired_time) && (!next && (max_time > media_time))) { in gst_qtdemux_adjust_seek() 1239 max_time = media_time; in gst_qtdemux_adjust_seek()
|
/third_party/libbpf/.github/actions/build-selftests/ |
D | vmlinux.h | 41732 long int max_time; member 43548 ktime_t max_time; member
|