| /linux/rust/kernel/time/ |
| H A D | delay.rs | 10 use super::Delta; 30 pub fn fsleep(delta: Delta) { in fsleep() argument 33 const MAX_DELTA: Delta = Delta::from_micros(i32::MAX as i64); in fsleep() 35 let delta = if (Delta::ZERO..=MAX_DELTA).contains(&delta) { in fsleep() 63 pub fn udelay(delta: Delta) { in udelay() argument 64 const MAX_UDELAY_DELTA: Delta = Delta::from_millis(bindings::MAX_UDELAY_MS as i64); in udelay() 69 let delta = if (Delta::ZERO..=MAX_UDELAY_DELTA).contains(&delta) { in udelay()
|
| H A D | hrtimer.rs | 70 use super::{ClockSource, Delta, Instant}; 180 unsafe fn raw_forward(self_ptr: *mut Self, now: HrTimerInstant<T>, interval: Delta) -> u64 in raw_forward() 204 pub fn forward(self: Pin<&mut Self>, now: HrTimerInstant<T>, interval: Delta) -> u64 in forward() 220 pub fn forward_now(self: Pin<&mut Self>, interval: Delta) -> u64 in forward_now() 529 impl HrTimerExpires for Delta { implementation 532 Delta::as_nanos(*self) in as_nanos() 584 type Expires = Delta; 602 type Expires = Delta; 620 type Expires = Delta; 638 type Expires = Delta; [all …]
|
| /linux/rust/kernel/ |
| H A D | time.rs | 196 pub fn elapsed(&self) -> Delta { in elapsed() argument 229 type Output = Delta; 233 fn sub(self, other: Instant<C>) -> Delta { in sub() argument 234 Delta { in sub() 240 impl<T: ClockSource> ops::Add<Delta> for Instant<T> { 244 fn add(self, rhs: Delta) -> Self::Output { in add() 260 impl<T: ClockSource> ops::Sub<Delta> for Instant<T> { 264 fn sub(self, rhs: Delta) -> Self::Output { in sub() 286 pub struct Delta { struct 290 impl ops::Add for Delta { implementation [all …]
|
| /linux/rust/kernel/io/ |
| H A D | poll.rs | 16 Delta, 74 sleep_delta: Delta, in read_poll_timeout() argument 75 timeout_delta: Delta, in read_poll_timeout() argument 160 delay_delta: Delta, in read_poll_timeout_atomic() argument
|
| /linux/drivers/gpu/nova-core/ |
| H A D | gfw.rs | 24 time::Delta, // 67 Delta::from_millis(1), in wait_gfw_boot_completion() 68 Delta::from_secs(4), in wait_gfw_boot_completion()
|
| /linux/drivers/gpu/nova-core/falcon/ |
| H A D | gsp.rs | 6 time::Delta, // 48 pub(crate) fn check_reload_completed(&self, bar: &Bar0, timeout: Delta) -> Result<bool> { in check_reload_completed() 52 Delta::ZERO, in check_reload_completed()
|
| /linux/rust/kernel/sync/atomic/ |
| H A D | internal.rs | 37 type Delta; typedef 44 type Delta = Self; 51 type Delta = Self; in new() 56 type Delta = Self; 61 type Delta = Self; in as_ptr() 317 fn add[](a: &AtomicRepr<Self>, v: Self::Delta) { 326 fn fetch_add[acquire, release, relaxed](a: &AtomicRepr<Self>, v: Self::Delta) -> Self { 32 type Delta; global() typedef 42 type Delta = Self; global() typedef
|
| /linux/drivers/gpu/nova-core/gsp/ |
| H A D | sequencer.rs | 17 Delta, // 190 Delta::ZERO, in run() 191 Delta::from_micros(timeout_us), in run() 199 fsleep(Delta::from_micros(i64::from(self.val()))); in run() 253 .check_reload_completed(seq.bar, Delta::from_secs(2))?; in run() 365 match cmdq.receive_msg::<GspSequence>(Delta::from_secs(10)) { in run()
|
| H A D | boot.rs | 10 time::Delta, // 215 Delta::from_millis(10), in boot() 216 Delta::from_secs(5), in boot()
|
| H A D | cmdq.rs | 18 time::Delta, 540 fn wait_for_msg(&self, timeout: Delta) -> Result<GspMessage<'_>> { in wait_for_msg() 545 Delta::from_millis(1), in wait_for_msg() 623 pub(crate) fn receive_msg<M: MessageFromGsp>(&mut self, timeout: Delta) -> Result<M> in receive_msg()
|
| /linux/drivers/net/phy/ |
| H A D | qt2025.rs | 22 use kernel::time::Delta; 100 Delta::from_millis(50), in probe() 101 Delta::from_secs(3), in probe()
|
| /linux/Documentation/userspace-api/media/v4l/ |
| H A D | pixfmt-tch-td08.rst | 12 8-bit signed Touch Delta 19 Delta values may range from -128 to 127. Typically the values will vary through
|
| H A D | pixfmt-tch-td16.rst | 12 16-bit signed little endian Touch Delta 20 Delta values may range from -32768 to 32767. Typically the values will vary
|
| H A D | dev-touch.rst | 34 Delta = Raw - Reference
|
| /linux/Documentation/hwmon/ |
| H A D | dps920ab.rst | 8 * Delta DPS920AB 21 This driver implements support for Delta DPS920AB 920W 54V DC single output
|
| /linux/sound/pci/trident/ |
| H A D | trident_main.c | 447 regs[2] = (voice->ESO << 16) | (voice->Delta & 0x0ffff); in snd_trident_write_voice_regs() 455 regs[2] = (voice->ESO << 16) | (voice->Delta & 0x0ffff); in snd_trident_write_voice_regs() 461 regs[0] = (voice->Delta << 24) | (voice->CSO & 0x00ffffff); in snd_trident_write_voice_regs() 462 regs[2] = ((voice->Delta << 16) & 0xff000000) | in snd_trident_write_voice_regs() 517 outl((voice->Delta << 24) | in snd_trident_write_cso_reg() 543 outl(((voice->Delta << 16) & 0xff000000) | (voice->ESO & 0x00ffffff), in snd_trident_write_eso_reg() 911 voice->Delta = snd_trident_convert_rate(runtime->rate); in snd_trident_playback_prepare() 943 evoice->Delta = voice->Delta; in snd_trident_playback_prepare() 1054 voice->Delta = snd_trident_convert_rate(runtime->rate); in snd_trident_capture_prepare() 1144 voice->Delta = snd_trident_convert_adc_rate(runtime->rate); in snd_trident_si7018_capture_prepare() [all …]
|
| /linux/drivers/gpu/drm/tyr/ |
| H A D | driver.rs | 74 time::Delta::from_millis(1), in issue_soft_reset() 75 time::Delta::from_millis(100), in issue_soft_reset()
|
| /linux/Documentation/ABI/testing/ |
| H A D | sysfs-bus-iio-adc-mcp3564 | 6 circuit of the Delta-Sigma modulator. The different BOOST 15 the current biasing circuit of the Delta-Sigma modulator.
|
| /linux/sound/pci/ali5451/ |
| H A D | ali5451.c | 1178 unsigned int Delta; in snd_ali_playback_prepare() local 1191 Delta = snd_ali_convert_rate(runtime->rate, 0); in snd_ali_playback_prepare() 1201 Delta = 0x1000; in snd_ali_playback_prepare() 1228 pvoice->number,runtime->rate,Delta,GVSEL,PAN,CTRL); in snd_ali_playback_prepare() 1234 Delta, in snd_ali_playback_prepare() 1250 Delta, in snd_ali_playback_prepare() 1268 unsigned int Delta; in snd_ali_prepare() local 1283 Delta = (pvoice->number == ALI_MODEM_IN_CHANNEL || in snd_ali_prepare() 1311 Delta = ((rate << 12) / runtime->rate) & 0x00ffff; in snd_ali_prepare() 1336 Delta, in snd_ali_prepare()
|
| /linux/tools/perf/Documentation/ |
| H A D | perf-diff.txt | 45 of the Baseline/Delta column. See --percentage for more info. 51 of the Baseline/Delta column. See --percentage for more info. 57 of the Baseline/Delta column. See --percentage for more info. 246 If specified the 'Delta' column is displayed with value 'd' computed as:
|
| H A D | examples.txt | 71 Delta compression using up to 2 threads. 125 Delta compression using up to 2 threads.
|
| /linux/arch/arm/mach-omap1/ |
| H A D | Kconfig | 151 bool "Amstrad E3 (Delta)" 159 Support for the Amstrad E3 (codename Delta) videophone. Say Y here
|
| /linux/sound/soc/stm/ |
| H A D | Kconfig | 45 for Sigma Delta Modulators (DFSDM) driver used
|
| /linux/Documentation/admin-guide/media/ |
| H A D | bttv-cardlist.rst | 46 - MATRIX-Vision MV-Delta 198 - MATRIX-Vision MV-Delta 2
|
| /linux/sound/soc/ti/ |
| H A D | Kconfig | 127 tristate "SoC Audio support for Amstrad E3 (Delta) videophone" 134 connected to a handset and a speakerphone found on Amstrad E3 (Delta)
|