Home
last modified time | relevance | path

Searched refs:tts (Results 1 – 8 of 8) sorted by relevance

/linux/rust/proc-macro2/
H A Dwrapper.rs110 TokenStream::Compiler(tts) => tts.is_empty(), in is_empty()
111 TokenStream::Fallback(tts) => tts.is_empty(), in is_empty()
133 TokenStream::Compiler(tts) => Display::fmt(&tts.clone().into_token_stream(), f), in fmt()
134 TokenStream::Fallback(tts) => Display::fmt(tts, f), in fmt()
231 TokenStream::Compiler(tts) => { in extend()
234 tts.extra.push(into_compiler_token(token)); in extend()
237 TokenStream::Fallback(tts) => tts.extend(stream), in extend()
245 TokenStream::Compiler(tts) => { in extend()
246 tts.evaluate_now(); in extend()
247 tts.stream in extend()
[all …]
/linux/rust/quote/
H A Dlib.rs689 ($call:ident! $extra:tt $($tts:tt)*) => {
691 (@ $($tts)*)
692 ($($tts)* @)
822 ($tokens:ident $($tts:tt)*) => {
824 (@ @ @ @ @ @ $($tts)*)
825 (@ @ @ @ @ $($tts)* @)
826 (@ @ @ @ $($tts)* @ @)
827 (@ @ @ $(($tts))* @ @ @)
828 (@ @ $($tts)* @ @ @ @)
829 (@ $($tts)* @ @ @ @ @)
[all …]
/linux/rust/syn/
H A Dtt.rs103 let tts = self.0.clone().into_iter().collect::<Vec<_>>(); in hash() localVariable
104 tts.len().hash(state); in hash()
105 for tt in tts { in hash()
H A Dbuffer.rs290 let mut tts = Vec::new(); in token_stream() localVariable
293 tts.push(tt); in token_stream()
296 tts.into_iter().collect() in token_stream()
/linux/Documentation/input/joydev/
H A Djoystick.rst76 inputattach -xxx /dev/tts/X &
460 inputattach --spaceorb /dev/tts/x &
464 inputattach --spaceball /dev/tts/x &
466 where /dev/tts/x is the serial port which the device is connected to. After
489 inputattach --warrior /dev/tts/x &
491 /dev/tts/x is the serial port your Warrior is attached to.
507 inputattach --magellan /dev/tts/x &
529 inputattach --iforce /dev/tts/x &
/linux/drivers/usb/host/
H A Dxhci-mem.c810 tt_list_head = &(xhci->rh_bw[virt_dev->rhub_port->hw_portnum].tts); in xhci_free_tt_info()
847 &xhci->rh_bw[virt_dev->rhub_port->hw_portnum].tts); in xhci_alloc_tt_info()
949 tt_list_head = &(xhci->rh_bw[vdev->rhub_port->hw_portnum].tts); in xhci_free_virt_devices_depth_first()
1161 list_for_each_entry(tt_bw, &rh_bw->tts, tt_list) { in xhci_setup_addressable_virt_dev()
1967 list_for_each_entry_safe(tt, n, &xhci->rh_bw[i].tts, tt_list) { in xhci_mem_cleanup()
2213 INIT_LIST_HEAD(&xhci->rh_bw[i].tts); in xhci_setup_port_arrays()
H A Dxhci.h778 struct list_head tts; member
/linux/tools/perf/
H A Dbuiltin-stat.c601 int tts = *time_to_sleep; in compute_tts() local
606 tts -= time_diff.tv_sec * MSEC_PER_SEC + in compute_tts()
609 if (tts < 0) in compute_tts()
610 tts = 0; in compute_tts()
612 *time_to_sleep = tts; in compute_tts()