Home
last modified time | relevance | path

Searched refs:delay (Results 176 - 200 of 608) sorted by relevance

12345678910>>...25

/device/soc/rockchip/rk3588/kernel/drivers/soc/rockchip/
H A Drockchip_pvtm.c10 #include <linux/delay.h>
239 static void rockchip_pvtm_delay(unsigned int delay) in rockchip_pvtm_delay() argument
241 unsigned int ms = delay / 1000; in rockchip_pvtm_delay()
242 unsigned int us = delay % 1000; in rockchip_pvtm_delay()
/third_party/curl/tests/server/
H A Dsocksd.c817 int delay = 20; in sockdaemon() local
831 rc = wait_ms(delay); in sockdaemon()
845 totdelay += delay; in sockdaemon()
846 delay *= 2; /* double the sleep for next attempt */ in sockdaemon()
H A Dmqttd.c800 int delay = 20; in sockdaemon() local
814 rc = wait_ms(delay); in sockdaemon()
826 totdelay += delay; in sockdaemon()
827 delay *= 2; /* double the sleep for next attempt */ in sockdaemon()
/third_party/ffmpeg/libavdevice/
H A Dxcbgrab.c204 int64_t curtime, delay; in wait_frame() local
210 delay = c->time_frame - curtime; in wait_frame()
211 if (delay <= 0) in wait_frame()
213 av_usleep(delay); in wait_frame()
/third_party/mesa3d/src/compiler/nir/
H A Dnir_schedule.c66 /* Approximate estimate of the delay between starting this instruction and
74 uint32_t delay; member
76 /* Cost of the maximum-delay path from this node to the leaves. */
103 /* An abstract approximation of the number of nir_scheduler_node->delay
788 /* Pick the max delay of the remaining ready set. */ in nir_schedule_choose_instruction_csr()
797 fprintf(stderr, "chose (ready max delay): "); in nir_schedule_choose_instruction_csr()
804 /* Pick the max delay of the remaining leaders. */ in nir_schedule_choose_instruction_csr()
811 fprintf(stderr, "chose (max delay): "); in nir_schedule_choose_instruction_csr()
956 scoreboard->time + n->delay); in nir_schedule_mark_node_scheduled()
1059 n->max_delay = MAX2(n->max_delay, max_delay + n->delay); in nir_schedule_dag_max_delay_cb()
[all...]
/third_party/python/Lib/asyncio/
H A Dwindows_events.py41 # Initial delay in seconds for connect_pipe() before retrying to connect
44 # Maximum delay in seconds for connect_pipe() before retrying to connect
680 delay = CONNECT_PIPE_INIT_DELAY
693 delay = min(delay * 2, CONNECT_PIPE_MAX_DELAY)
694 await tasks.sleep(delay)
H A Dtasks.py620 when the 'delay' is set to 0. It uses a bare 'yield'
627 async def sleep(delay, result=None):
629 if delay <= 0:
635 h = loop.call_later(delay,
/third_party/python/Lib/test/test_asyncio/
H A Dtest_taskgroups.py652 async def do_job(delay):
653 await asyncio.sleep(delay)
671 async def coro1(delay):
672 await asyncio.sleep(delay)
/device/soc/rockchip/common/sdk_linux/drivers/phy/rockchip/
H A Dphy-rockchip-inno-usb2.c10 #include <linux/delay.h>
1064 unsigned long delay; in rockchip_usb2phy_otg_sm_work() local
1078 delay = OTG_SCHEDULE_DELAY; in rockchip_usb2phy_otg_sm_work()
1170 delay = OTG_SCHEDULE_DELAY; in rockchip_usb2phy_otg_sm_work()
1212 schedule_delayed_work(&rport->otg_sm_work, delay); in rockchip_usb2phy_otg_sm_work()
1267 unsigned long delay; in rockchip_chg_detect_work() local
1300 delay = CHG_DCD_POLL_TIME; in rockchip_chg_detect_work()
1313 delay = CHG_PRIMARY_DET_TIME; in rockchip_chg_detect_work()
1317 delay = CHG_DCD_POLL_TIME; in rockchip_chg_detect_work()
1326 delay in rockchip_chg_detect_work()
[all...]
/third_party/alsa-utils/aplay/
H A Daplay.c231 "-R, --start-delay=# delay for automatic PCM start is # microseconds \n" in usage()
233 "-T, --stop-delay=# delay for automatic PCM stop is # microseconds from xrun\n" in usage()
506 {"start-delay", 1, 0, 'R'},
507 {"stop-delay", 1, 0, 'T'},
734 error(_("invalid start delay argument '%s'"), optarg);
741 error(_("invalid stop delay argument '%s'"), optarg);
2001 snd_pcm_sframes_t avail, delay, savail, sdelay; local
2006 err = snd_pcm_avail_delay(handle, &avail, &delay);
[all...]
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/oal/
H A Doal_util.h30 #include <linux/delay.h>
35 #include <linux/delay.h>
36 #include <asm/delay.h>
H A Dexception_rst.c22 #include <linux/delay.h>
/device/soc/rockchip/common/sdk_linux/drivers/spi/
H A Dspidev.c267 k_tmp->delay.value = u_tmp->delay_usecs; in spidev_message()
268 k_tmp->delay.unit = SPI_DELAY_UNIT_USECS; in spidev_message()
278 k_tmp->bits_per_word ?: spidev->spi->bits_per_word, k_tmp->delay.value, k_tmp->word_delay.value, in spidev_message()
/third_party/ffmpeg/libavfilter/
H A Daf_compand.c61 double delay; member
81 { "delay", "set delay for samples before sending them to volume adjuster", OFFSET(delay), AV_OPT_TYPE_DOUBLE, { .dbl = 0 }, 0, 20, A },
492 s->delay_samples = s->delay * sample_rate; in config_output()
/third_party/node/test/parallel/
H A Dtest-eventtarget.js20 const { setTimeout: delay } = require('timers/promises');
548 await delay(0);
553 await delay(0);
/third_party/typescript/tests/baselines/reference/
H A DbluebirdStaticThis.js34 static delay<R>(dit: typeof Promise, value: Promise.Thenable<R>, ms: number): Promise<R>;
35 static delay<R>(dit: typeof Promise, value: R, ms: number): Promise<R>;
36 static delay(dit: typeof Promise, ms: number): Promise<void>;
/third_party/ffmpeg/libavformat/
H A Dmux.c500 int delay = st->codecpar->video_delay; in compute_muxer_pkt_fields() local
516 av_ts2str(pkt->pts), av_ts2str(pkt->dts), av_ts2str(sti->cur_dts), delay, pkt->size, pkt->stream_index); in compute_muxer_pkt_fields()
518 if (pkt->pts == AV_NOPTS_VALUE && pkt->dts != AV_NOPTS_VALUE && delay == 0) in compute_muxer_pkt_fields()
522 if ((pkt->pts == 0 || pkt->pts == AV_NOPTS_VALUE) && pkt->dts == AV_NOPTS_VALUE && !delay) { in compute_muxer_pkt_fields()
534 if (pkt->pts != AV_NOPTS_VALUE && pkt->dts == AV_NOPTS_VALUE && delay <= MAX_REORDER_DELAY) { in compute_muxer_pkt_fields()
536 for (int i = 1; i < delay + 1 && sti->pts_buffer[i] == AV_NOPTS_VALUE; i++) in compute_muxer_pkt_fields()
537 sti->pts_buffer[i] = pkt->pts + (i - delay - 1) * pkt->duration; in compute_muxer_pkt_fields()
538 for (int i = 0; i<delay && sti->pts_buffer[i] > sti->pts_buffer[i + 1]; i++) in compute_muxer_pkt_fields()
577 * likely equal to the encoder delay, but it would be better if we in compute_muxer_pkt_fields()
/third_party/python/Lib/test/
H A Dtest_asyncgen.py1198 async def sleep_n_crash(delay):
1199 await asyncio.sleep(delay)
1230 async def sleep_n_crash(delay):
1231 fut = asyncio.ensure_future(asyncio.sleep(delay),
1233 self.loop.call_later(delay / 2, lambda: fut.cancel())
1320 async def sleep_n_crash(delay):
1321 fut = asyncio.ensure_future(asyncio.sleep(delay),
1323 self.loop.call_later(delay / 2, lambda: fut.cancel())
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/interdrv/common/cipher/src/drv/cipher_v1.0/osal/include/
H A Ddrv_osal_lib_linux.h41 #include <linux/delay.h>
/device/board/hihope/rk3568/audio_drivers/dai/src/
H A Drk3568_dai_adapter.c9 #include <linux/delay.h>
/device/board/hihope/dayu210/audio_drivers/dai/src/
H A Drk3588_dai_adapter.c9 #include <linux/delay.h>
/device/soc/rockchip/common/vendor/drivers/media/platform/rockchip/isp/
H A Disp_ispp.h73 u32 delay; member
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/tests/kutf/
H A Dkutf_helpers.c32 #include <linux/delay.h>
/device/soc/rockchip/common/kernel/drivers/gpu/arm/midgard/tests/mali_kutf_irq_test/
H A Dmali_kutf_irq_test_main.c19 #include <linux/delay.h>
/device/soc/rockchip/rk3588/kernel/drivers/media/platform/rockchip/isp/
H A Disp_ispp.h72 u32 delay; member

Completed in 33 milliseconds

12345678910>>...25