/kernel/linux/linux-6.6/drivers/net/wireless/ti/wl1251/ |
H A D | ps.c | 44 unsigned long delay; in wl1251_ps_elp_sleep() local 47 delay = msecs_to_jiffies(ELP_ENTRY_DELAY); in wl1251_ps_elp_sleep() 48 ieee80211_queue_delayed_work(wl->hw, &wl->elp_work, delay); in wl1251_ps_elp_sleep()
|
/kernel/linux/linux-6.6/samples/bpf/ |
H A D | offwaketime_user.c | 100 int delay = 1, i = 0; in main() local 143 delay = atoi(argv[1]); in main() 144 sleep(delay); in main()
|
/third_party/ffmpeg/libavdevice/ |
H A D | alsa_dec.c | 106 snd_pcm_sframes_t delay = 0; in audio_read_packet() local 133 snd_pcm_delay(s->h, &delay); in audio_read_packet() 134 dts -= av_rescale(delay + res, 1000000, s->sample_rate); in audio_read_packet()
|
/third_party/mesa3d/.gitlab-ci/tests/lava/ |
H A D | helpers.py | 60 delay = messages.get(section_type, default) 61 yield mock_lava_signal(section_type), delay 65 yield create_lava_yaml_msg(msg=f"hwci: mesa: {result}"), delay
|
/third_party/ltp/testcases/kernel/hotplug/cpu_hotplug/functional/ |
H A D | cpuhotplug01.sh | 31 -n time delay after an online of cpu 32 -f time delay after offline of cpu 33 -e time delay before start of entire new cycle
|
/third_party/python/Lib/asyncio/ |
H A D | timeouts.py | 125 def timeout(delay: Optional[float]) -> Timeout: 135 delay - value in seconds or None to disable timeout logic 142 return Timeout(loop.time() + delay if delay is not None else None)
|
/kernel/linux/linux-6.6/drivers/gpu/drm/panel/ |
H A D | panel-simple.c | 24 #include <linux/delay.h> 87 /** @delay: Structure containing various delay values for this panel. */ 90 * @delay.prepare: Time for the panel to become ready. 98 * @delay.enable: Time for the panel to display a valid frame. 107 * @delay.disable: Time for the panel to turn the display off. 115 * @delay.unprepare: Time to power down completely. 126 } delay; member 295 if (p->desc->delay.disable) in panel_simple_disable() 296 msleep(p->desc->delay in panel_simple_disable() [all...] |
/kernel/linux/linux-5.10/drivers/edac/ |
H A D | edac_pci.c | 172 unsigned long delay; in edac_pci_workq_function() local 189 delay = round_jiffies_relative(msecs_to_jiffies(msec)); in edac_pci_workq_function() 191 delay = msecs_to_jiffies(msec); in edac_pci_workq_function() 193 edac_queue_work(&pci->work, delay); in edac_pci_workq_function()
|
/kernel/linux/linux-5.10/drivers/video/backlight/ |
H A D | otm3225a.c | 15 #include <linux/delay.h> 83 unsigned short delay; /* delay in ms after write */ member 178 /* execute delay if any */ in otm3225a_write() 179 if (instruction->delay) in otm3225a_write() 180 msleep(instruction->delay); in otm3225a_write()
|
/kernel/linux/linux-5.10/drivers/video/fbdev/core/ |
H A D | fb_defio.c | 17 #include <linux/delay.h> 140 /* come back after delay to process the deferred IO */ in fb_deferred_io_mkwrite() 141 schedule_delayed_work(&info->deferred_work, fbdefio->delay); in fb_deferred_io_mkwrite() 206 if (fbdefio->delay == 0) /* set a default of 1 s */ in fb_deferred_io_init() 207 fbdefio->delay = HZ; in fb_deferred_io_init()
|
/kernel/linux/linux-6.6/drivers/video/backlight/ |
H A D | otm3225a.c | 15 #include <linux/delay.h> 83 unsigned short delay; /* delay in ms after write */ member 178 /* execute delay if any */ in otm3225a_write() 179 if (instruction->delay) in otm3225a_write() 180 msleep(instruction->delay); in otm3225a_write()
|
/kernel/linux/linux-6.6/drivers/edac/ |
H A D | edac_pci.c | 168 unsigned long delay; in edac_pci_workq_function() local 185 delay = round_jiffies_relative(msecs_to_jiffies(msec)); in edac_pci_workq_function() 187 delay = msecs_to_jiffies(msec); in edac_pci_workq_function() 189 edac_queue_work(&pci->work, delay); in edac_pci_workq_function()
|
/kernel/linux/linux-6.6/drivers/net/wireless/realtek/rtlwifi/rtl8723com/ |
H A D | fw_common.c | 73 u8 delay = 100; in rtl8723ae_firmware_selfreset() local 80 delay--; in rtl8723ae_firmware_selfreset() 81 if (delay == 0) in rtl8723ae_firmware_selfreset() 86 if (delay == 0) { in rtl8723ae_firmware_selfreset()
|
/kernel/linux/linux-6.6/drivers/phy/qualcomm/ |
H A D | phy-qcom-m31.c | 7 #include <linux/delay.h> 76 u32 delay; member 195 if (regs[i].delay) in m31usb_phy_init() 196 udelay(regs[i].delay); in m31usb_phy_init()
|
/third_party/ffmpeg/libavfilter/ |
H A D | af_flanger.c | 56 { "delay", "base delay in milliseconds", OFFSET(delay_min), AV_OPT_TYPE_DOUBLE, {.dbl=0}, 0, 30, A }, 57 { "depth", "added swept delay in milliseconds", OFFSET(delay_depth), AV_OPT_TYPE_DOUBLE, {.dbl=2}, 0, 10, A }, 67 { "interp", "delay-line interpolation", OFFSET(interpolation), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, A, "itype" }, 141 double delay = s->lfo[(s->lfo_pos + channel_phase) % s->lfo_length]; in filter_frame() local 142 int int_delay = (int)delay; in filter_frame() 143 double frac_delay = modf(delay, &delay); in filter_frame()
|
H A D | af_stereotools.c | 44 double delay; member 89 { "delay", "set delay", OFFSET(delay), AV_OPT_TYPE_DOUBLE, {.dbl=0}, -20, 20, A }, 151 const double delay = s->delay; in filter_frame() local 160 int nbuf = inlink->sample_rate * (fabs(delay) / 1000.); in filter_frame() 281 if (delay > 0.) { in filter_frame() 283 } else if (delay < 0.) { in filter_frame()
|
/third_party/node/deps/npm/node_modules/retry/test/integration/ |
H A D | test-retry-operation.js | 148 var delay = 50 variable 152 minTimeout: delay, 153 maxTimeout: delay 171 var minTime = startTime + (delay * 3);
|
/kernel/linux/linux-5.10/include/linux/iio/common/ |
H A D | ssp_sensors.h | 64 u32 delay); 71 u32 delay);
|
/kernel/linux/linux-6.6/include/linux/iio/common/ |
H A D | ssp_sensors.h | 64 u32 delay); 71 u32 delay);
|
/third_party/node/test/parallel/ |
H A D | test-debugger-profile.js | 11 function delay(ms) { function 31 await delay(250);
|
/third_party/skia/third_party/externals/oboe/apps/fxlab/app/src/main/cpp/effects/ |
H A D | CombFilter.h | 25 // delay > 0 in samples 26 CombFilter(float blend, float feedForward, float feedBack, int delay) : in CombFilter() argument 30 kDelay(static_cast<size_t>(delay)) {} in CombFilter()
|
/kernel/linux/linux-5.10/sound/soc/samsung/ |
H A D | s3c-i2s-v2.c | 14 #include <linux/delay.h> 531 snd_pcm_sframes_t delay; in s3c2412_i2s_delay() local 534 delay = S3C2412_IISFIC_TXCOUNT(reg); in s3c2412_i2s_delay() 536 delay = S3C2412_IISFIC_RXCOUNT(reg); in s3c2412_i2s_delay() 538 return delay; in s3c2412_i2s_delay() 672 if (!ops->delay) in s3c_i2sv2_register_component() 673 ops->delay = s3c2412_i2s_delay; in s3c_i2sv2_register_component()
|
/kernel/linux/linux-5.10/net/dccp/ |
H A D | output.c | 213 * @delay: timeout in jiffies 215 * This is used by CCIDs which need to delay the send time in process context. 217 static int dccp_wait_for_ccid(struct sock *sk, unsigned long delay) in dccp_wait_for_ccid() argument 226 remaining = schedule_timeout(delay); in dccp_wait_for_ccid() 308 long delay, rc; in dccp_flush_write_queue() local 323 delay = msecs_to_jiffies(rc); in dccp_flush_write_queue() 324 if (delay > *time_budget) in dccp_flush_write_queue() 326 rc = dccp_wait_for_ccid(sk, delay); in dccp_flush_write_queue() 329 *time_budget -= (delay - rc); in dccp_flush_write_queue()
|
/kernel/linux/linux-6.6/net/dccp/ |
H A D | output.c | 215 * @delay: timeout in jiffies 217 * This is used by CCIDs which need to delay the send time in process context. 219 static int dccp_wait_for_ccid(struct sock *sk, unsigned long delay) in dccp_wait_for_ccid() argument 228 remaining = schedule_timeout(delay); in dccp_wait_for_ccid() 315 long delay, rc; in dccp_flush_write_queue() local 330 delay = msecs_to_jiffies(rc); in dccp_flush_write_queue() 331 if (delay > *time_budget) in dccp_flush_write_queue() 333 rc = dccp_wait_for_ccid(sk, delay); in dccp_flush_write_queue() 336 *time_budget -= (delay - rc); in dccp_flush_write_queue()
|
/third_party/node/deps/uv/src/unix/ |
H A D | tcp.c | 392 int uv__tcp_keepalive(int fd, int on, unsigned int delay) { in uv__tcp_keepalive() argument 400 if (setsockopt(fd, IPPROTO_TCP, TCP_KEEPIDLE, &delay, sizeof(delay))) in uv__tcp_keepalive() 412 /* FIXME(bnoordhuis) That's possibly because sizeof(delay) should be 1. */ in uv__tcp_keepalive() 414 if (on && setsockopt(fd, IPPROTO_TCP, TCP_KEEPALIVE, &delay, sizeof(delay))) in uv__tcp_keepalive() 440 int uv_tcp_keepalive(uv_tcp_t* handle, int on, unsigned int delay) { in uv_tcp_keepalive() argument 444 err =uv__tcp_keepalive(uv__stream_fd(handle), on, delay); in uv_tcp_keepalive() 454 /* TODO Store delay if uv__stream_fd(handle) == -1 but don't want to enlarge in uv_tcp_keepalive()
|