| /linux/rust/kernel/ |
| H A D | fmt.rs | 40 pub trait Display { trait 45 impl<T: ?Sized + Display> Display for &T { impl 47 Display::fmt(*self, f) in fmt() 51 impl<T: ?Sized + Display> core::fmt::Display for Adapter<&T> { 54 Display::fmt(t, f) in fmt() 63 impl$($($generics)*)? Display for $ty $(where $($where)*)? { 65 core::fmt::Display::fmt(self, f) 90 {<T: ?Sized>} crate::sync::Arc<T> {where crate::sync::Arc<T>: core::fmt::Display}, 91 {<T: ?Sized>} crate::sync::UniqueArc<T> {where crate::sync::UniqueArc<T>: core::fmt::Display},
|
| /linux/drivers/gpu/drm/sun4i/ |
| H A D | Kconfig | 3 tristate "DRM Support for Allwinner A10 Display Engine" 14 Display Engine. If M is selected the module will be called 40 tristate "Support for Allwinner A10 Display Engine Backend" 45 original Allwinner Display Engine, which has a backend to 69 have a Display Engine 2.0 contain this controller. If M is 73 tristate "Support for Allwinner Display Engine 2.0 Mixer" 77 Allwinner Display Engine 2.0, which has a mixer to do some
|
| /linux/rust/proc-macro2/ |
| H A D | lib.rs | 175 use core::fmt::{self, Debug, Display}; 316 impl Display for TokenStream { 318 Display::fmt(&self.inner, f) in fmt() 341 impl Display for LexError { 343 Display::fmt(&self.inner, f) in fmt() 605 impl Display for TokenTree { 608 TokenTree::Group(t) => Display::fmt(t, f), in fmt() 609 TokenTree::Ident(t) => Display::fmt(t, f), in fmt() 610 TokenTree::Punct(t) => Display::fmt(t, f), in fmt() 611 TokenTree::Literal(t) => Display::fmt(t, f), in fmt() [all …]
|
| H A D | wrapper.rs | 14 use core::fmt::{self, Debug, Display}; 130 impl Display for TokenStream { 133 TokenStream::Compiler(tts) => Display::fmt(&tts.clone().into_token_stream(), f), in fmt() 134 TokenStream::Fallback(tts) => Display::fmt(tts, f), in fmt() 300 impl Display for LexError { 303 LexError::Compiler(e) => Display::fmt(e, f), in fmt() 304 LexError::Fallback(e) => Display::fmt(e, f), in fmt() 307 Display::fmt(&fallback, f) in fmt() 646 impl Display for Group { 649 Group::Compiler(group) => Display::fmt(group, formatter), in fmt() [all …]
|
| H A D | fallback.rs | 18 use core::fmt::{self, Debug, Display, Write}; 212 impl Display for LexError { 218 impl Display for TokenStream { 227 TokenTree::Group(tt) => Display::fmt(tt, f), in fmt() 228 TokenTree::Ident(tt) => Display::fmt(tt, f), in fmt() 231 Display::fmt(tt, f) in fmt() 233 TokenTree::Literal(tt) => Display::fmt(tt, f), in fmt() 738 impl Display for Group { 755 Display::fmt(&self.stream, f)?; in fmt() 889 impl Display for Ident { [all …]
|
| /linux/Documentation/ABI/testing/ |
| H A D | sysfs-class-mei | 21 Description: Display fw status registers content 36 Description: Display the negotiated HBM protocol version. 45 Description: Display the driver HBM protocol version. 62 Description: Display the ME firmware version. 73 Description: Display the ME device state. 88 Description: Display trc status register content 98 Description: Display kind of the device
|
| H A D | sysfs-platform-wilco-ec | 15 Display Wilco Embedded Controller firmware build date. 22 Display Wilco Embedded Controller build revision. 30 Display Wilco Embedded Controller model number. 56 Display Wilco Embedded Controller firmware version.
|
| /linux/samples/rust/ |
| H A D | rust_print_main.rs | 39 // Both `i32` and `&str` implement `Display`. This enables us to express a unified in arc_print() 41 // type `Arc<dyn Display>`. in arc_print() 43 use kernel::fmt::Display; in arc_print() 44 fn arc_dyn_print(arc: &Arc<dyn Display>) { in arc_print() argument 45 pr_info!("Arc<dyn Display> says {arc}"); in arc_print() 48 let a_i32_display: Arc<dyn Display> = Arc::new(42i32, GFP_KERNEL)?; in arc_print() 49 let a_str_display: Arc<dyn Display> = a.clone(); in arc_print()
|
| /linux/drivers/gpu/drm/meson/ |
| H A D | Kconfig | 3 tristate "DRM Support for Amlogic Meson Display Controller" 18 tristate "HDMI Synopsys Controller support for Amlogic Meson Display" 25 tristate "MIPI DSI Synopsys Controller support for Amlogic Meson Display"
|
| /linux/rust/syn/ |
| H A D | error.rs | 11 use std::fmt::{self, Debug, Display}; 160 pub fn new<T: Display>(span: Span, message: T) -> Self { in new() 191 pub fn new_spanned<T: ToTokens, U: Display>(tokens: T, message: U) -> Self { in new_spanned() 329 pub(crate) fn new_at<T: Display>(scope: Span, cursor: Cursor, message: T) -> Error { in new_at() 339 pub(crate) fn new2<T: Display>(start: Span, end: Span, message: T) -> Error { in new2() 374 impl Display for Error {
|
| /linux/rust/quote/ |
| H A D | ident_fragment.rs | 55 fmt::Display::fmt(id, f) in fmt() 57 fmt::Display::fmt(&id[..], f) in fmt() 82 fmt::Display::fmt(self, f)
|
| /linux/Documentation/userspace-api/media/dvb/ |
| H A D | legacy_dvb_osd.rst | 14 The DVB OSD device controls the OnScreen-Display of the AV7110 based 481 - 4:2:2 YCRCB Graphic Display 487 - 4:4:4 YCRCB Graphic Display 499 - True Size Normal MPEG Video Display 505 - MPEG Video Display Half Resolution 511 - MPEG Video Display Quarter Resolution 517 - MPEG Video Display Double Resolution 523 - True Size MPEG Video Display Half Resolution 529 - True Size MPEG Video Display Quarter Resolution 535 - True Size MPEG Video Display Double Resolution [all …]
|
| /linux/rust/kernel/device/ |
| H A D | property.rs | 78 pub fn display_name(&self) -> impl fmt::Display + '_ { in display_name() 81 impl fmt::Display for FwNodeDisplayName<'_> { in display_name() 92 fmt::Display::fmt(name, f) in display_name() 382 impl fmt::Display for FwNode { 418 fmt::Display::fmt(prefix, f)?; in fmt() 420 fmt::Display::fmt(&fwnode.display_name(), f)?; in fmt()
|
| /linux/drivers/video/fbdev/mmp/fb/ |
| H A D | Kconfig | 3 tristate "fb driver for Marvell MMP Display Subsystem" 8 fb driver for Marvell MMP Display Subsystem
|
| /linux/Documentation/fb/ |
| H A D | sm501.rst | 10 sm501fb.bpp= SM501 Display driver: 13 sm501fb.mode= SM501 Display driver:
|
| /linux/drivers/gpu/drm/imx/dc/ |
| H A D | Kconfig | 2 tristate "Freescale i.MX8 Display Controller Graphics" 13 enable Freescale i.MX8 Display Controller(DC) graphics support
|
| /linux/drivers/video/fbdev/mmp/ |
| H A D | Kconfig | 3 tristate "Marvell MMP Display Subsystem support" 6 Marvell Display Subsystem support.
|
| /linux/drivers/media/platform/ti/omap/ |
| H A D | Kconfig | 8 tristate "OMAP2/OMAP3 V4L2-Display driver" 17 V4L2 Display driver support for OMAP2/3 based boards.
|
| /linux/drivers/gpu/drm/aspeed/ |
| H A D | Kconfig | 3 tristate "ASPEED BMC Display Controller" 14 Chose this option if you have an ASPEED AST2500 SOC Display
|
| /linux/drivers/gpu/drm/mcde/ |
| H A D | Kconfig | 2 tristate "DRM Support for ST-Ericsson MCDE (Multichannel Display Engine)" 17 Multi-Channel Display Engine.
|
| /linux/drivers/gpu/drm/renesas/rcar-du/ |
| H A D | Kconfig | 3 tristate "DRM Support for R-Car Display Unit" 42 Enable support for the R-Car Display Unit embedded LVDS encoders. 58 Enable support for the R-Car Display Unit embedded MIPI DSI encoders.
|
| /linux/tools/perf/Documentation/ |
| H A D | perf-c2c.txt | 108 Display only statistic tables and force stdio mode. 111 Display full length of symbols. 232 Rmt/Lcl Hitm (Display with HITM types) 235 Peer Snoop (Display with peer type) 274 HITM - Rmt, Lcl (Display with HITM types) 277 Peer Snoop - Rmt, Lcl (Display with peer type) 296 cycles - rmt hitm, lcl hitm, load (Display with HITM types) 299 cycles - rmt peer, lcl peer, load (Display with peer type) 323 Node{cpus %hitms %stores} (Display with HITM types) 324 Node{cpus %peers %stores} (Display with peer type)
|
| H A D | perf.txt | 21 Display perf version. 27 Display or set exec path. 30 Display html documentation path.
|
| /linux/drivers/gpu/drm/renesas/rz-du/ |
| H A D | Kconfig | 3 tristate "DRM Support for RZ/G2L Display Unit" 23 Enable support for the RZ/G2L Display Unit embedded MIPI DSI encoders.
|
| /linux/rust/kernel/sync/ |
| H A D | arc.rs | 901 impl<T: fmt::Display + ?Sized> fmt::Display for UniqueArc<T> { 903 fmt::Display::fmt(self.deref(), f) in fmt() 907 impl<T: fmt::Display + ?Sized> fmt::Display for Arc<T> { 909 fmt::Display::fmt(self.deref(), f) in fmt()
|