/device/soc/rockchip/rk3588/kernel/drivers/soc/rockchip/ |
H A D | rockchip_pvtm.c | 10 #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 D | socksd.c | 817 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 D | mqttd.c | 800 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 D | xcbgrab.c | 204 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 D | nir_schedule.c | 66 /* 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 D | windows_events.py | 41 # 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 D | tasks.py | 620 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 D | test_taskgroups.py | 652 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 D | phy-rockchip-inno-usb2.c | 10 #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 D | aplay.c | 231 "-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 D | oal_util.h | 30 #include <linux/delay.h> 35 #include <linux/delay.h> 36 #include <asm/delay.h>
|
H A D | exception_rst.c | 22 #include <linux/delay.h>
|
/device/soc/rockchip/common/sdk_linux/drivers/spi/ |
H A D | spidev.c | 267 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 D | af_compand.c | 61 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 D | test-eventtarget.js | 20 const { setTimeout: delay } = require('timers/promises'); 548 await delay(0); 553 await delay(0);
|
/third_party/typescript/tests/baselines/reference/ |
H A D | bluebirdStaticThis.js | 34 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 D | mux.c | 500 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 D | test_asyncgen.py | 1198 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 D | drv_osal_lib_linux.h | 41 #include <linux/delay.h>
|
/device/board/hihope/rk3568/audio_drivers/dai/src/ |
H A D | rk3568_dai_adapter.c | 9 #include <linux/delay.h>
|
/device/board/hihope/dayu210/audio_drivers/dai/src/ |
H A D | rk3588_dai_adapter.c | 9 #include <linux/delay.h>
|
/device/soc/rockchip/common/vendor/drivers/media/platform/rockchip/isp/ |
H A D | isp_ispp.h | 73 u32 delay; member
|
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/tests/kutf/ |
H A D | kutf_helpers.c | 32 #include <linux/delay.h>
|
/device/soc/rockchip/common/kernel/drivers/gpu/arm/midgard/tests/mali_kutf_irq_test/ |
H A D | mali_kutf_irq_test_main.c | 19 #include <linux/delay.h>
|
/device/soc/rockchip/rk3588/kernel/drivers/media/platform/rockchip/isp/ |
H A D | isp_ispp.h | 72 u32 delay; member
|