Home
last modified time | relevance | path

Searched refs:t (Results 1 – 21 of 21) sorted by relevance

/DragonOS/kernel/crates/intertrait/tests/
H A Drun.rs3 let t = trybuild::TestCases::new(); in tests() localVariable
4 t.compile_fail("tests/ui/*.rs"); in tests()
/DragonOS/kernel/crates/intertrait/macros/src/
H A Ditem_type.rs24 .flat_map(|t| generate_caster(ident, &t, flags.contains(&Flag::Sync))) in process()
H A Dlib.rs142 .map(|t| generate_caster(&ty, t, flags.contains(&Flag::Sync))) in castable_to()
/DragonOS/kernel/crates/crc/src/
H A Dcrc64.rs43 let t = ((crc >> 56) ^ (byte as u64)) & 0xff; in crc64_be() localVariable
44 crc = CRC64_TABLE[t as usize] ^ (crc << 8); in crc64_be()
/DragonOS/docs/_static/
H A Ddragonos-logo.svg1t-2.34-10.84a76.38,76.38,0,0,1-10.84,7l-12.6,7c-1.17-2.34-4.1-5.48-8.79-9.38a114.63,114.63,0,0,0,1…
/DragonOS/kernel/crates/intertrait/tests/ui/
H A Don-generic-type.stderr1 error: #[cast_to(..)] can't be used on a generic type definition
/DragonOS/user/port/binutils/2.38/
H A DREADME.md18 docker build --no-cache -t dragonos-binutils-build .
/DragonOS/kernel/src/driver/virtio/
H A Dvirtio.rs73 t => { in virtio_device_init()
74 warn!("Unrecognized virtio device: {:?}", t); in virtio_device_init()
/DragonOS/kernel/src/driver/tty/
H A Dtty_driver.rs345 if let Some(t) = self.lookup_tty(index.unwrap()) { in open_tty()
346 if t.core().port().is_none() { in open_tty()
347 warn!("{} port is None", t.core().name()); in open_tty()
348 } else if t.core().port().unwrap().state() == TtyPortState::KOPENED { in open_tty()
352 t.reopen()?; in open_tty()
353 tty = Some(t); in open_tty()
H A Dtty_core.rs479 if let Some(t) = driver.saved_termios().get(tty_index) { in init_termios()
480 let mut termios = *t; in init_termios()
/DragonOS/kernel/crates/rbpf/src/
H A Dasm_parser.rs88 .map(|t| Operand::Memory(t.0, t.1.unwrap_or(0))); in operand()
98 (ident().skip(spaces()), operands, spaces()).map(|t| Instruction { in instruction()
99 name: t.0, in instruction()
100 operands: t.1, in instruction()
H A Djit.rs80 ( $mem:ident, $data:tt, $t:ty ) => {{
81 let size = mem::size_of::<$t>() as usize;
84 let mut ptr = $mem.contents.as_ptr().add($mem.offset) as *mut $t;
/DragonOS/tools/debugging/logmonitor/src/
H A Dui.rs45 .map(|t| text::Line::from(Span::styled(*t, Style::default().fg(Color::Green)))) in render()
/DragonOS/docs/
H A Dmake.bat23 echo.If you don't have Sphinx installed, grab it from
/DragonOS/kernel/src/arch/x86_64/smp/
H A Dmod.rs50 let vaddr = if let Some(t) = smp_cpu_manager() in smp_ap_start()
54 t.kernel_stack_force_ref().stack_max_address().data() - 16 in smp_ap_start()
/DragonOS/docs/kernel/debug/
H A Ddebug-kernel-with-gdb.md104 136 __asm__ __volatile__("inb %%dx, %0 \n\t"
242 t Integer, print as binary (t = „two“).
/DragonOS/kernel/crates/rbpf/
H A DCargo.toml28 # Default features (std) are disabled so that the dependencies don't pull in the
H A DLICENSE-APACHE183 replaced with your own identifying information. (Don't include
H A DREADME.md574 isn't available. This is because it depends on functions provided by `libc`
575 (`libc::posix_memalign()`, `libc::mprotect()`) which aren't available on
/DragonOS/kernel/crates/rbpf/mk/
H A Dappveyor.bat66 REM verify that non-test builds aren't trying to use test-only features.
/DragonOS/kernel/crates/intertrait/
H A DREADME.md146 In the course, it doesn't rely on any unstable Rust implementation details such as the layout of tr…